| Index: device/bluetooth/test/mock_bluetooth_adapter.h
|
| diff --git a/device/bluetooth/test/mock_bluetooth_adapter.h b/device/bluetooth/test/mock_bluetooth_adapter.h
|
| index 078d3536b3ef3f1d0bb2b28f9ff63978e9da7c53..f375b4c68c295de349ccc7dbf7bbcd9084b2920e 100644
|
| --- a/device/bluetooth/test/mock_bluetooth_adapter.h
|
| +++ b/device/bluetooth/test/mock_bluetooth_adapter.h
|
| @@ -29,10 +29,12 @@ class MockBluetoothAdapter : public BluetoothAdapter {
|
| MOCK_METHOD2(DeviceRemoved, void(BluetoothAdapter*, BluetoothDevice*));
|
| };
|
|
|
| - MockBluetoothAdapter(const std::string& address, const std::string& name);
|
| + MockBluetoothAdapter();
|
|
|
| MOCK_METHOD1(AddObserver, void(BluetoothAdapter::Observer*));
|
| MOCK_METHOD1(RemoveObserver, void(BluetoothAdapter::Observer*));
|
| + MOCK_CONST_METHOD0(address, std::string());
|
| + MOCK_CONST_METHOD0(name, std::string());
|
| MOCK_CONST_METHOD0(IsInitialized, bool());
|
| MOCK_CONST_METHOD0(IsPresent, bool());
|
| MOCK_CONST_METHOD0(IsPowered, bool());
|
|
|