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

Unified Diff: chromeos/dbus/fake_bluetooth_gatt_service_client.h

Issue 228643004: device/bluetooth: Add chromeos::BluetoothRemoteGattCharacteristicChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed potentially flaky expectation from unit test. Created 6 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: chromeos/dbus/fake_bluetooth_gatt_service_client.h
diff --git a/chromeos/dbus/fake_bluetooth_gatt_service_client.h b/chromeos/dbus/fake_bluetooth_gatt_service_client.h
index 35b05d42132ee776b5498721be4c68b1eb6b4f59..59bcdb56f56da7642ddf8ea71987485705ad679c 100644
--- a/chromeos/dbus/fake_bluetooth_gatt_service_client.h
+++ b/chromeos/dbus/fake_bluetooth_gatt_service_client.h
@@ -9,6 +9,7 @@
#include <vector>
#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/bluetooth_gatt_service_client.h"
@@ -54,6 +55,13 @@ class CHROMEOS_EXPORT FakeBluetoothGattServiceClient
void ExposeHeartRateService(const dbus::ObjectPath& device_path);
void HideHeartRateService();
+ // Returns whether or not the Heart Rate Service is visible.
+ bool IsHeartRateVisible() const;
+
+ // Returns the current object path of the visible Heart Rate service. If the
+ // service is not visible, returns an invalid empty path.
+ dbus::ObjectPath GetHeartRateServicePath() const;
+
// Final object path components and the corresponding UUIDs of the GATT
// services that we emulate. Service paths are hierarchical to Bluetooth
// device paths, so if the path component is "service0000", and the device
@@ -71,6 +79,12 @@ class CHROMEOS_EXPORT FakeBluetoothGattServiceClient
void NotifyServiceAdded(const dbus::ObjectPath& object_path);
void NotifyServiceRemoved(const dbus::ObjectPath& object_path);
+ // Tells FakeBluetoothGattCharacteristicClient to expose GATT characteristics.
+ // This is scheduled from ExposeHeartRateService to simulate asynchronous
+ // retrieval of characteristics. If the Heart Rate Service is hidden at the
+ // time this method is called, then it does nothing.
+ void ExposeHeartRateCharacteristics();
+
// Static properties we return. As long as a service is exposed, this will be
// non-null. Otherwise it will be null.
scoped_ptr<Properties> heart_rate_service_properties_;
@@ -79,6 +93,12 @@ class CHROMEOS_EXPORT FakeBluetoothGattServiceClient
// List of observers interested in event notifications from us.
ObserverList<Observer> observers_;
+ // Weak pointer factory for generating 'this' pointers that might live longer
+ // than we do.
+ // Note: This should remain the last member so it'll be destroyed and
+ // invalidate its weak pointers before any other members are destroyed.
+ base::WeakPtrFactory<FakeBluetoothGattServiceClient> weak_ptr_factory_;
+
DISALLOW_COPY_AND_ASSIGN(FakeBluetoothGattServiceClient);
};
« no previous file with comments | « chromeos/dbus/fake_bluetooth_gatt_characteristic_client.cc ('k') | chromeos/dbus/fake_bluetooth_gatt_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698