| Index: chromeos/dbus/bluetooth_gatt_descriptor_client.h
|
| diff --git a/chromeos/dbus/bluetooth_gatt_descriptor_client.h b/chromeos/dbus/bluetooth_gatt_descriptor_client.h
|
| index 0db53fe94d4b0becae5d627ec5d5d105f3d81e83..15d3d9c34a508f732f07cab190a3d9f130a116b3 100644
|
| --- a/chromeos/dbus/bluetooth_gatt_descriptor_client.h
|
| +++ b/chromeos/dbus/bluetooth_gatt_descriptor_client.h
|
| @@ -6,6 +6,7 @@
|
| #define CHROMEOS_DBUS_BLUETOOTH_GATT_DESCRIPTOR_CLIENT_H_
|
|
|
| #include <string>
|
| +#include <vector>
|
|
|
| #include "base/basictypes.h"
|
| #include "base/callback.h"
|
| @@ -29,6 +30,10 @@ class CHROMEOS_EXPORT BluetoothGattDescriptorClient : public DBusClient {
|
| // [read-only]
|
| dbus::Property<dbus::ObjectPath> characteristic;
|
|
|
| + // The cached value of the descriptor. This property gets updated only after
|
| + // a successful read request. [read-only]
|
| + dbus::Property<std::vector<uint8_t>> value;
|
| +
|
| Properties(dbus::ObjectProxy* object_proxy,
|
| const std::string& interface_name,
|
| const PropertyChangedCallback& callback);
|
|
|