diff options
author | Wei Wang <weiwa@google.com> | 2014-07-09 14:03:42 -0700 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2014-07-11 11:06:10 -0700 |
commit | af74e66e29a518157cb78fcef4b4fc532b7f60b0 (patch) | |
tree | 7e16f5bc451845f48381679b7c3bcd48e1f2067a /core/java/android/bluetooth/IBluetoothGatt.aidl | |
parent | 3c58775a126c9c9b2f86bc22bd82cedbdcb06024 (diff) | |
download | frameworks_base-af74e66e29a518157cb78fcef4b4fc532b7f60b0.zip frameworks_base-af74e66e29a518157cb78fcef4b4fc532b7f60b0.tar.gz frameworks_base-af74e66e29a518157cb78fcef4b4fc532b7f60b0.tar.bz2 |
Unhide Bluetooth batch APIs. Deprecate BluetoothAdpater scan APIs. (1/2)
Change-Id: Ib0c4ea6c8372a15473269660355fb5ccf4284457
Diffstat (limited to 'core/java/android/bluetooth/IBluetoothGatt.aidl')
-rw-r--r-- | core/java/android/bluetooth/IBluetoothGatt.aidl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/bluetooth/IBluetoothGatt.aidl b/core/java/android/bluetooth/IBluetoothGatt.aidl index 5ed10a6..0f0eee6 100644 --- a/core/java/android/bluetooth/IBluetoothGatt.aidl +++ b/core/java/android/bluetooth/IBluetoothGatt.aidl @@ -18,7 +18,7 @@ package android.bluetooth; import android.bluetooth.BluetoothDevice; import android.bluetooth.le.AdvertiseSettings; -import android.bluetooth.le.AdvertisementData; +import android.bluetooth.le.AdvertiseData; import android.bluetooth.le.ScanFilter; import android.bluetooth.le.ScanSettings; import android.os.ParcelUuid; @@ -40,8 +40,8 @@ interface IBluetoothGatt { void stopScan(in int appIf, in boolean isServer); void flushPendingBatchResults(in int appIf, in boolean isServer); void startMultiAdvertising(in int appIf, - in AdvertisementData advertiseData, - in AdvertisementData scanResponse, + in AdvertiseData advertiseData, + in AdvertiseData scanResponse, in AdvertiseSettings settings); void stopMultiAdvertising(in int appIf); void registerClient(in ParcelUuid appId, in IBluetoothGattCallback callback); |