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

Unified Diff: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc

Issue 307453007: device/bluetooth: Implement GATT characteristic properties on Chrome OS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc
diff --git a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc
index 947d84e880ff37f30bd487f5831470455fb6f001..980e1acdafc627da1cee7a2019acbdb394ae9e39 100644
--- a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc
+++ b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc
@@ -76,9 +76,9 @@ void PopulateCharacteristicProperties(
}
if (properties & BluetoothGattCharacteristic::kPropertyReliableWrite)
api_properties->push_back(apibtle::CHARACTERISTIC_PROPERTY_RELIABLEWRITE);
- if (properties & BluetoothGattCharacteristic::kPropertyWriteableAuxiliaries) {
+ if (properties & BluetoothGattCharacteristic::kPropertyWritableAuxiliaries) {
api_properties->push_back(
- apibtle::CHARACTERISTIC_PROPERTY_WRITEABLEAUXILIARIES);
+ apibtle::CHARACTERISTIC_PROPERTY_WRITABLEAUXILIARIES);
}
}

Powered by Google App Engine
This is Rietveld 408576698