Merge "Support PBAP for get/close profile proxy" am: 3e3f8bc09f am: 80e13d598c

Change-Id: I11a28320654e0a2cbd46f2ae0e187c22c9c47789
This commit is contained in:
Automerger Merge Worker
2020-01-10 02:32:41 +00:00

View File

@@ -2670,6 +2670,9 @@ public final class BluetoothAdapter {
} else if (profile == BluetoothProfile.PAN) {
BluetoothPan pan = new BluetoothPan(context, listener);
return true;
} else if (profile == BluetoothProfile.PBAP) {
BluetoothPbap pbap = new BluetoothPbap(context, listener);
return true;
} else if (profile == BluetoothProfile.HEALTH) {
Log.e(TAG, "getProfileProxy(): BluetoothHealth is deprecated");
return false;
@@ -2742,6 +2745,10 @@ public final class BluetoothAdapter {
BluetoothPan pan = (BluetoothPan) proxy;
pan.close();
break;
case BluetoothProfile.PBAP:
BluetoothPbap pbap = (BluetoothPbap) proxy;
pbap.close();
break;
case BluetoothProfile.GATT:
BluetoothGatt gatt = (BluetoothGatt) proxy;
gatt.close();