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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc

Issue 1765773002: bluetooth: Refactor GetDescriptorForUUID to GetDescriptorsForUUID. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-notify-tommyt-
Patch Set: GetDescriptorsForUUID split from other changes. Created 4 years, 9 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_remote_gatt_characteristic_android.cc
diff --git a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
index bb7e6696e7e55bfd7a930321243befbdd1541970..b4ecc88e6c62e2301e9561722615de9b17562b11 100644
--- a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
+++ b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
@@ -155,10 +155,10 @@ void BluetoothRemoteGattCharacteristicAndroid::StartNotifySession(
return;
}
- BluetoothGattDescriptor* descriptor = GetDescriptorForUUID(
+ std::vector<BluetoothGattDescriptor*> ccc_descriptor = GetDescriptorsForUUID(
BluetoothGattDescriptor::ClientCharacteristicConfigurationUuid());
- if (!descriptor) {
+ if (ccc_descriptor.size() != 1u) {
ortuno 2016/03/13 20:41:45 Hmm this would fail with GATT NOT SUPPORTED if the
scheib 2016/03/25 00:13:57 Done: Different errors returned for <1 and >1. Tes
LOG(ERROR)
<< "Could not find client characteristic configuration descriptor";
base::MessageLoop::current()->PostTask(
@@ -183,7 +183,7 @@ void BluetoothRemoteGattCharacteristicAndroid::StartNotifySession(
value.push_back(0);
pending_start_notify_calls_.push(std::make_pair(callback, error_callback));
- descriptor->WriteRemoteDescriptor(
+ ccc_descriptor[0]->WriteRemoteDescriptor(
value, base::Bind(&BluetoothRemoteGattCharacteristicAndroid::
OnStartNotifySessionSuccess,
base::Unretained(this)),

Powered by Google App Engine
This is Rietveld 408576698