| Index: device/bluetooth/test/mock_bluetooth_device.cc
|
| diff --git a/device/bluetooth/test/mock_bluetooth_device.cc b/device/bluetooth/test/mock_bluetooth_device.cc
|
| index 8bbf442ea56f89cbf84db71f2a5a398e6ad1c573..32f672eae9e471ea7bdbb990484be5275a605399 100644
|
| --- a/device/bluetooth/test/mock_bluetooth_device.cc
|
| +++ b/device/bluetooth/test/mock_bluetooth_device.cc
|
| @@ -51,6 +51,10 @@ MockBluetoothDevice::MockBluetoothDevice(MockBluetoothAdapter* adapter,
|
| .WillByDefault(testing::Return(false));
|
| ON_CALL(*this, GetName())
|
| .WillByDefault(testing::Return(base::UTF8ToUTF16(name_)));
|
| + ON_CALL(*this, GetInquiryRSSI())
|
| + .WillByDefault(testing::Return(base::Optional<int8_t>(0)));
|
| + ON_CALL(*this, GetInquiryTxPower())
|
| + .WillByDefault(testing::Return(base::Optional<int8_t>(0)));
|
| ON_CALL(*this, ExpectingPinCode())
|
| .WillByDefault(testing::Return(false));
|
| ON_CALL(*this, ExpectingPasskey())
|
|
|