Merge "HFP: Send caller ID in +CLIP command (1/4)"

am: 6c4c8aeb70

Change-Id: I575da78cd7b1b1de7244c14bafa49491c195081b
This commit is contained in:
Benson Li
2018-11-21 12:57:18 -08:00
committed by android-build-merger

View File

@@ -973,11 +973,11 @@ public final class BluetoothHeadset implements BluetoothProfile {
*/
@UnsupportedAppUsage
public void phoneStateChanged(int numActive, int numHeld, int callState, String number,
int type) {
int type, String name) {
final IBluetoothHeadset service = mService;
if (service != null && isEnabled()) {
try {
service.phoneStateChanged(numActive, numHeld, callState, number, type);
service.phoneStateChanged(numActive, numHeld, callState, number, type, name);
} catch (RemoteException e) {
Log.e(TAG, e.toString());
}