| Index: chromeos/dbus/fake_bluetooth_gatt_characteristic_client.h
|
| diff --git a/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.h b/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.h
|
| index 69eb23de950607bf02fb6b3c11e2ace7cf9cad45..bd3d126b8c2a3b93f1e31b8c4d4125a297925e14 100644
|
| --- a/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.h
|
| +++ b/chromeos/dbus/fake_bluetooth_gatt_characteristic_client.h
|
| @@ -56,6 +56,16 @@ class CHROMEOS_EXPORT FakeBluetoothGattCharacteristicClient
|
| void ExposeHeartRateCharacteristics(const dbus::ObjectPath& service_path);
|
| void HideHeartRateCharacteristics();
|
|
|
| + // Returns whether or not the heart rate characteristics are visible and
|
| + // performs the appropriate assertions.
|
| + bool IsHeartRateVisible() const;
|
| +
|
| + // Returns the current object paths of exposed characteristics. If the
|
| + // characteristic is not visible, returns an invalid empty path.
|
| + dbus::ObjectPath GetHeartRateMeasurementPath() const;
|
| + dbus::ObjectPath GetBodySensorLocationPath() const;
|
| + dbus::ObjectPath GetHeartRateControlPointPath() const;
|
| +
|
| // Object path components and UUIDs of GATT characteristics.
|
| // Heart Rate Service:
|
| static const char kHeartRateMeasurementPathComponent[];
|
| @@ -83,10 +93,6 @@ class CHROMEOS_EXPORT FakeBluetoothGattCharacteristicClient
|
| // is a random value within a reasonable range.
|
| std::vector<uint8> GetHeartRateMeasurementValue();
|
|
|
| - // Returns whether or not the heart rate characteristics are visible and
|
| - // performs the appropriate assertions.
|
| - bool IsHeartRateVisible() const;
|
| -
|
| // If true, characteristics of the Heart Rate Service are visible. Use
|
| // IsHeartRateVisible() to check the value.
|
| bool heart_rate_visible_;
|
|
|