Index: chrome/browser/extensions/api/bluetooth/bluetooth_apitest.cc |
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_apitest.cc b/chrome/browser/extensions/api/bluetooth/bluetooth_apitest.cc |
index 4c1e85ff45dfdd4dda961faf8525db58a10622c9..a567584afae503db67825db0abcc71862e0634df 100644 |
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_apitest.cc |
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_apitest.cc |
@@ -655,6 +655,11 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, DeviceInfo) { |
.WillRepeatedly(testing::Return(0x240A)); |
EXPECT_CALL(*device1_.get(), GetDeviceID()) |
.WillRepeatedly(testing::Return(0x0400)); |
+ EXPECT_CALL(*device1_, GetRSSI()).WillRepeatedly(testing::Return(-42)); |
+ EXPECT_CALL(*device1_, GetCurrentHostTransmitPower()) |
+ .WillRepeatedly(testing::Return(-16)); |
+ EXPECT_CALL(*device1_, GetMaximumHostTransmitPower()) |
+ .WillRepeatedly(testing::Return(10)); |
BluetoothDevice::UUIDList uuids; |
uuids.push_back(BluetoothUUID("1105")); |