Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8515)

Unified Diff: device/bluetooth/test/mock_bluetooth_gatt_connection.h

Issue 1341103004: Handle change of BLE address after pairing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ***ADDED BY MISTAKE, OMMIT *** Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
};
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_device.cc ('k') | device/bluetooth/test/mock_bluetooth_gatt_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698