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

Unified Diff: chromeos/dbus/bluetooth_gatt_characteristic_client.h

Issue 402303002: bluetoothLowEnergy: Send onServiceAdded after all characteristics are discovered (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: chromeos/dbus/bluetooth_gatt_characteristic_client.h
diff --git a/chromeos/dbus/bluetooth_gatt_characteristic_client.h b/chromeos/dbus/bluetooth_gatt_characteristic_client.h
index 29b339a26ee40e80d8ea861490323b82f55526d0..ab5fd702dfb03f5175c0d59fff906da4c589f59b 100644
--- a/chromeos/dbus/bluetooth_gatt_characteristic_client.h
+++ b/chromeos/dbus/bluetooth_gatt_characteristic_client.h
@@ -30,7 +30,7 @@ class CHROMEOS_EXPORT BluetoothGattCharacteristicClient : public DBusClient {
dbus::Property<dbus::ObjectPath> service;
// Whether or not this characteristic is currently sending ValueUpdated
- // signals.
+ // signals. [read-only]
dbus::Property<bool> notifying;
// List of flags representing the GATT "Characteristic Properties bit field"
@@ -38,6 +38,10 @@ class CHROMEOS_EXPORT BluetoothGattCharacteristicClient : public DBusClient {
// descriptor bit field. [read-only, optional]
dbus::Property<std::vector<std::string> > flags;
+ // Array of object paths representing the descriptors of this
+ // characteristic. [read-only]
+ dbus::Property<std::vector<dbus::ObjectPath> > descriptors;
+
Properties(dbus::ObjectProxy* object_proxy,
const std::string& interface_name,
const PropertyChangedCallback& callback);

Powered by Google App Engine
This is Rietveld 408576698