Chromium Code Reviews| 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 e8130da3d46f6fee4c54d849f9055dd1d5274eec..5235d5b3b01c8b8a3dad312cbc38cd520ce6c516 100644 |
| --- a/device/bluetooth/test/mock_bluetooth_device.cc |
| +++ b/device/bluetooth/test/mock_bluetooth_device.cc |
| @@ -26,12 +26,6 @@ MockBluetoothDevice::MockBluetoothDevice(MockBluetoothAdapter* adapter, |
| .WillByDefault(testing::Return(address_)); |
| ON_CALL(*this, GetDeviceType()) |
| .WillByDefault(testing::Return(DEVICE_UNKNOWN)); |
| - ON_CALL(*this, GetRSSI()) |
| - .WillByDefault(testing::Return(kUnknownPower)); |
| - ON_CALL(*this, GetCurrentHostTransmitPower()) |
| - .WillByDefault(testing::Return(kUnknownPower)); |
| - ON_CALL(*this, GetMaximumHostTransmitPower()) |
| - .WillByDefault(testing::Return(kUnknownPower)); |
|
Ilya Sherman
2014/11/19 22:18:07
Do you not need a default value to return for call
Tim Song
2014/12/06 00:51:38
GetConnectionInfo is an async method, so adding a
|
| ON_CALL(*this, GetVendorIDSource()) |
| .WillByDefault(testing::Return(VENDOR_ID_UNKNOWN)); |
| ON_CALL(*this, GetVendorID()) |