| Index: device/bluetooth/dbus/bluetooth_gatt_characteristic_client.cc
|
| diff --git a/device/bluetooth/dbus/bluetooth_gatt_characteristic_client.cc b/device/bluetooth/dbus/bluetooth_gatt_characteristic_client.cc
|
| index afc31eab09afad2ddaef16f1c374ac06ed7ffb0d..0002ddbb03d0267a135a64cc41eedb81fe24e9d9 100644
|
| --- a/device/bluetooth/dbus/bluetooth_gatt_characteristic_client.cc
|
| +++ b/device/bluetooth/dbus/bluetooth_gatt_characteristic_client.cc
|
| @@ -16,13 +16,6 @@
|
|
|
| namespace bluez {
|
|
|
| -namespace {
|
| -
|
| -// TODO(armansito): Move this constant to cros_system_api.
|
| -const char kValueProperty[] = "Value";
|
| -
|
| -} // namespace
|
| -
|
| // static
|
| const char BluetoothGattCharacteristicClient::kNoResponseError[] =
|
| "org.chromium.Error.NoResponse";
|
| @@ -37,12 +30,10 @@ BluetoothGattCharacteristicClient::Properties::Properties(
|
| : dbus::PropertySet(object_proxy, interface_name, callback) {
|
| RegisterProperty(bluetooth_gatt_characteristic::kUUIDProperty, &uuid);
|
| RegisterProperty(bluetooth_gatt_characteristic::kServiceProperty, &service);
|
| - RegisterProperty(kValueProperty, &value);
|
| + RegisterProperty(bluetooth_gatt_characteristic::kValueProperty, &value);
|
| RegisterProperty(bluetooth_gatt_characteristic::kNotifyingProperty,
|
| ¬ifying);
|
| RegisterProperty(bluetooth_gatt_characteristic::kFlagsProperty, &flags);
|
| - RegisterProperty(bluetooth_gatt_characteristic::kDescriptorsProperty,
|
| - &descriptors);
|
| }
|
|
|
| BluetoothGattCharacteristicClient::Properties::~Properties() {}
|
|
|