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

Unified Diff: device/bluetooth/bluetooth_adapter_mac_unittest.mm

Issue 1410223003: bluetooth: mac: Fix incorrect use of AdvertisementData dictionary strings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-merge-uuids-
Patch Set: Created 5 years, 2 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 | device/bluetooth/test/bluetooth_test_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_adapter_mac_unittest.mm
diff --git a/device/bluetooth/bluetooth_adapter_mac_unittest.mm b/device/bluetooth/bluetooth_adapter_mac_unittest.mm
index 34a2d2ef6a3fd4d5f89d1cda5a24d9adc50f595e..6329dd02109f9c4e7289ed7d9e98af87b9b9b97e 100644
--- a/device/bluetooth/bluetooth_adapter_mac_unittest.mm
+++ b/device/bluetooth/bluetooth_adapter_mac_unittest.mm
@@ -77,8 +77,8 @@ class BluetoothAdapterMacTest : public testing::Test {
NSDictionary* CreateAdvertisementData() {
NSDictionary* advertisement_data = @{
- @"CBAdvertisementDataIsConnectable" : @(YES),
- @"CBAdvertisementDataServiceDataKey" : [NSDictionary dictionary],
+ CBAdvertisementDataIsConnectable : @(YES),
+ CBAdvertisementDataServiceDataKey : [NSDictionary dictionary],
};
[advertisement_data retain];
return advertisement_data;
« no previous file with comments | « no previous file | device/bluetooth/test/bluetooth_test_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698