Index: device/bluetooth/test/mock_bluetooth_device.h |
diff --git a/device/bluetooth/test/mock_bluetooth_device.h b/device/bluetooth/test/mock_bluetooth_device.h |
index b5948f651c12f07b9f7fc51f989554521614885a..6821405679c50664dc47e5774459ea3ed1a6a197 100644 |
--- a/device/bluetooth/test/mock_bluetooth_device.h |
+++ b/device/bluetooth/test/mock_bluetooth_device.h |
@@ -40,6 +40,7 @@ class MockBluetoothDevice : public BluetoothDevice { |
MOCK_CONST_METHOD0(GetDeviceType, BluetoothDevice::DeviceType()); |
MOCK_CONST_METHOD0(IsPaired, bool()); |
MOCK_CONST_METHOD0(IsConnected, bool()); |
+ MOCK_CONST_METHOD0(IsGattConnected, bool()); |
MOCK_CONST_METHOD0(IsConnectable, bool()); |
MOCK_CONST_METHOD0(IsConnecting, bool()); |
MOCK_CONST_METHOD0(GetUUIDs, UUIDList()); |
@@ -81,6 +82,8 @@ class MockBluetoothDevice : public BluetoothDevice { |
MOCK_CONST_METHOD0(GetGattServices, std::vector<BluetoothGattService*>()); |
MOCK_CONST_METHOD1(GetGattService, BluetoothGattService*(const std::string&)); |
+ MOCK_METHOD0(CreateGattConnectionImpl, void()); |
+ MOCK_METHOD0(DisconnectGatt, void()); |
// BluetoothDevice manages the lifetime of its BluetoothGATTServices. |
// This method takes ownership of the MockBluetoothGATTServices. This is only |