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

Unified Diff: chromeos/dbus/bluetooth_gatt_characteristic_client.h

Issue 307453007: device/bluetooth: Implement GATT characteristic properties on Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 2935e4af90613ba75f1986e2ec80b69cb5a3543a..ef56071917085376a59ff183c1fef6f8b65d4e28 100644
--- a/chromeos/dbus/bluetooth_gatt_characteristic_client.h
+++ b/chromeos/dbus/bluetooth_gatt_characteristic_client.h
@@ -19,6 +19,18 @@ namespace chromeos {
// characteristic objects exposed by the Bluetooth daemon.
class CHROMEOS_EXPORT BluetoothGattCharacteristicClient : public DBusClient {
public:
+ // TODO(armansito): Move these constants to service_constants.h
keybuk 2014/05/30 22:24:56 Do it before submission
armansito 2014/06/05 19:44:13 Done.
+ static const char kFlagBroadcast[];
+ static const char kFlagRead[];
+ static const char kFlagWriteWithoutResponse[];
+ static const char kFlagWrite[];
+ static const char kFlagNotify[];
+ static const char kFlagIndicate[];
+ static const char kFlagAuthenticatedSignedWrites[];
+ static const char kFlagExtendedProperties[];
+ static const char kFlagReliableWrite[];
+ static const char kFlagWritableAuxiliaries[];
+
// Structure of properties associated with GATT characteristics.
struct Properties : public dbus::PropertySet {
// The 128-bit characteristic UUID. [read-only]

Powered by Google App Engine
This is Rietveld 408576698