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 59bcdb56f56da7642ddf8ea71987485705ad679c..535b8c7b02ff0614a8a768602c7ebf037cd07a0a 100644 |
--- a/chromeos/dbus/fake_bluetooth_gatt_service_client.h |
+++ b/chromeos/dbus/fake_bluetooth_gatt_service_client.h |
@@ -30,24 +30,24 @@ class CHROMEOS_EXPORT FakeBluetoothGattServiceClient |
// dbus::PropertySet override |
virtual void Get(dbus::PropertyBase* property, |
- dbus::PropertySet::GetCallback callback) OVERRIDE; |
- virtual void GetAll() OVERRIDE; |
+ dbus::PropertySet::GetCallback callback) override; |
+ virtual void GetAll() override; |
virtual void Set(dbus::PropertyBase* property, |
- dbus::PropertySet::SetCallback callback) OVERRIDE; |
+ dbus::PropertySet::SetCallback callback) override; |
}; |
FakeBluetoothGattServiceClient(); |
virtual ~FakeBluetoothGattServiceClient(); |
// DBusClient override. |
- virtual void Init(dbus::Bus* bus) OVERRIDE; |
+ virtual void Init(dbus::Bus* bus) override; |
// BluetoothGattServiceClient overrides. |
- virtual void AddObserver(Observer* observer) OVERRIDE; |
- virtual void RemoveObserver(Observer* observer) OVERRIDE; |
- virtual std::vector<dbus::ObjectPath> GetServices() OVERRIDE; |
+ virtual void AddObserver(Observer* observer) override; |
+ virtual void RemoveObserver(Observer* observer) override; |
+ virtual std::vector<dbus::ObjectPath> GetServices() override; |
virtual Properties* GetProperties(const dbus::ObjectPath& object_path) |
- OVERRIDE; |
+ override; |
// Makes a service visible for device with object path |device_path|. Note |
// that only one instance of a specific service is simulated at a time. Hence, |