Index: device/bluetooth/test/mock_bluetooth_gatt_connection.h |
diff --git a/device/bluetooth/test/mock_bluetooth_gatt_connection.h b/device/bluetooth/test/mock_bluetooth_gatt_connection.h |
index ccc736d0b6d309ecf0fce954f7efeb8efe188626..74fdf9e1fa46e302d8167bbf685586772a2f5d4d 100644 |
--- a/device/bluetooth/test/mock_bluetooth_gatt_connection.h |
+++ b/device/bluetooth/test/mock_bluetooth_gatt_connection.h |
@@ -15,11 +15,13 @@ class BluetoothAdapter; |
class MockBluetoothGattConnection : public BluetoothGattConnection { |
public: |
MockBluetoothGattConnection(scoped_refptr<device::BluetoothAdapter> adapter, |
- const std::string& device_address); |
+ const std::string& device_address, |
+ bool in_progress); |
virtual ~MockBluetoothGattConnection(); |
MOCK_CONST_METHOD0(GetDeviceAddress, std::string()); |
MOCK_METHOD0(IsConnected, bool()); |
+ MOCK_METHOD0(InProgress, bool()); |
MOCK_METHOD0(Disconnect, void()); |
}; |