Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Unified Diff: device/bluetooth/bluetooth_device_android.cc

Issue 1565773002: Clear the BLE services list on disconnect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a unittest Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluetooth_device_android.cc
diff --git a/device/bluetooth/bluetooth_device_android.cc b/device/bluetooth/bluetooth_device_android.cc
index ebd78318e52c0bef7a4338feb9edc3a81dcf5bfa..be9d6b874d984ec26372497c2efae16a04935a7c 100644
--- a/device/bluetooth/bluetooth_device_android.cc
+++ b/device/bluetooth/bluetooth_device_android.cc
@@ -210,6 +210,9 @@ void BluetoothDeviceAndroid::OnConnectionStateChange(
if (gatt_connected_) {
DidConnectGatt();
} else {
+ gatt_services_.clear();
+ SetGattServicesDiscoveryComplete(false);
+
// TODO(scheib) Create new BluetoothDevice::ConnectErrorCode enums for
// android values not yet represented. http://crbug.com/531058
switch (status) { // Constants are from android.bluetooth.BluetoothGatt.
@@ -229,6 +232,7 @@ void BluetoothDeviceAndroid::OnConnectionStateChange(
void BluetoothDeviceAndroid::OnGattServicesDiscovered(
JNIEnv* env,
const JavaParamRef<jobject>& jcaller) {
+ SetGattServicesDiscoveryComplete(true);
FOR_EACH_OBSERVER(BluetoothAdapter::Observer, GetAdapter()->GetObservers(),
GattServicesDiscovered(GetAdapter(), this));
}

Powered by Google App Engine
This is Rietveld 408576698