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

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

Issue 1908523002: bluetooth: Make IsGattServicesDiscoveryComplete virtual (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Address scheib's comments Created 4 years, 8 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
« no previous file with comments | « device/bluetooth/bluetooth_device.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f111b9dde1e4ca3529572fc9ac5fc9fb13c2180f..4c52a24623bbca0c36d503baf9b6584cb283465f 100644
--- a/device/bluetooth/test/mock_bluetooth_device.h
+++ b/device/bluetooth/test/mock_bluetooth_device.h
@@ -88,6 +88,9 @@ class MockBluetoothDevice : public BluetoothDevice {
void(const GattConnectionCallback& callback,
const ConnectErrorCallback& error_callback));
+ MOCK_METHOD1(SetGattServicesDiscoveryComplete, void(bool));
+ MOCK_CONST_METHOD0(IsGattServicesDiscoveryComplete, bool());
+
MOCK_CONST_METHOD0(GetGattServices, std::vector<BluetoothGattService*>());
MOCK_CONST_METHOD1(GetGattService, BluetoothGattService*(const std::string&));
MOCK_METHOD0(CreateGattConnectionImpl, void());
« no previous file with comments | « device/bluetooth/bluetooth_device.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698