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

Unified Diff: device/bluetooth/bluetooth_device.h

Issue 1862093002: bluetooth: replace GattServices D-Bus property with ServicesResolved (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bluetooth: replace GattServices D-Bus property with ServicesResolved 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
Index: device/bluetooth/bluetooth_device.h
diff --git a/device/bluetooth/bluetooth_device.h b/device/bluetooth/bluetooth_device.h
index 82cc1ce1336836ccda653183c904a4f21ba0f393..f040619f665185b13b5bda700c92bc37ba5339e1 100644
--- a/device/bluetooth/bluetooth_device.h
+++ b/device/bluetooth/bluetooth_device.h
@@ -443,10 +443,10 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDevice {
const ConnectErrorCallback& error_callback);
// Set the gatt services discovery complete flag for this device.
- void SetGattServicesDiscoveryComplete(bool complete);
+ virtual void SetGattServicesDiscoveryComplete(bool complete);
ortuno 2016/04/20 20:19:14 I had to fix some tests that required this to be v
// Indicates whether service discovery is complete for this device.
- bool IsGattServicesDiscoveryComplete() const;
+ virtual bool IsGattServicesDiscoveryComplete() const;
// Returns the list of discovered GATT services.
virtual std::vector<BluetoothGattService*> GetGattServices() const;

Powered by Google App Engine
This is Rietveld 408576698