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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_apitest.cc

Issue 2244693002: bluetooth: Refactor how we update based on Advertising Data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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: extensions/browser/api/bluetooth/bluetooth_apitest.cc
diff --git a/extensions/browser/api/bluetooth/bluetooth_apitest.cc b/extensions/browser/api/bluetooth/bluetooth_apitest.cc
index ffe204d95f91efa20e87999664fabbaa7a2c8fe8..19d09eb15203869e5239a637ecb18d6938696ecd 100644
--- a/extensions/browser/api/bluetooth/bluetooth_apitest.cc
+++ b/extensions/browser/api/bluetooth/bluetooth_apitest.cc
@@ -429,9 +429,9 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, DeviceInfo) {
.WillRepeatedly(testing::Return(0x240A));
EXPECT_CALL(*device1_, GetDeviceID()).WillRepeatedly(testing::Return(0x0400));
- BluetoothDevice::UUIDList uuids;
- uuids.push_back(BluetoothUUID("1105"));
- uuids.push_back(BluetoothUUID("1106"));
+ BluetoothDevice::UUIDSet uuids;
+ uuids.insert(BluetoothUUID("1105"));
+ uuids.insert(BluetoothUUID("1106"));
EXPECT_CALL(*device1_, GetUUIDs()).WillOnce(testing::Return(uuids));

Powered by Google App Engine
This is Rietveld 408576698