| 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));
|
|
|
|
|