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

Unified Diff: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
diff --git a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
index 2682f7dfa82c35f0c69a78c72cf884399840090a..ba711b7900b0cc116e57ead38f0c9b3ca9f321d6 100644
--- a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
+++ b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_apitest.cc
@@ -505,7 +505,7 @@ IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTest, CharacteristicProperties) {
Return(BluetoothGattCharacteristic::kPropertyExtendedProperties))
.WillOnce(Return(BluetoothGattCharacteristic::kPropertyReliableWrite))
.WillOnce(
- Return(BluetoothGattCharacteristic::kPropertyWriteableAuxiliaries))
+ Return(BluetoothGattCharacteristic::kPropertyWritableAuxiliaries))
.WillOnce(Return(
BluetoothGattCharacteristic::kPropertyBroadcast |
BluetoothGattCharacteristic::kPropertyRead |
@@ -516,7 +516,7 @@ IN_PROC_BROWSER_TEST_F(BluetoothLowEnergyApiTest, CharacteristicProperties) {
BluetoothGattCharacteristic::kPropertyAuthenticatedSignedWrites |
BluetoothGattCharacteristic::kPropertyExtendedProperties |
BluetoothGattCharacteristic::kPropertyReliableWrite |
- BluetoothGattCharacteristic::kPropertyWriteableAuxiliaries));
+ BluetoothGattCharacteristic::kPropertyWritableAuxiliaries));
ExtensionTestMessageListener listener("ready", true);
ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII(
« no previous file with comments | « no previous file | chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698