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

Unified Diff: chromeos/dbus/fake_bluetooth_gatt_descriptor_client.h

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_descriptor_client.h
diff --git a/chromeos/dbus/fake_bluetooth_gatt_descriptor_client.h b/chromeos/dbus/fake_bluetooth_gatt_descriptor_client.h
index ce3f2d4d5f8afe13cd327771a66c99277ecf1f13..0fee9ae67ab83529823a8698b9ea412baa9623e7 100644
--- a/chromeos/dbus/fake_bluetooth_gatt_descriptor_client.h
+++ b/chromeos/dbus/fake_bluetooth_gatt_descriptor_client.h
@@ -28,31 +28,31 @@ class CHROMEOS_EXPORT FakeBluetoothGattDescriptorClient
// 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;
};
FakeBluetoothGattDescriptorClient();
virtual ~FakeBluetoothGattDescriptorClient();
// DBusClient override.
- virtual void Init(dbus::Bus* bus) OVERRIDE;
+ virtual void Init(dbus::Bus* bus) override;
// BluetoothGattDescriptorClient overrides.
- virtual void AddObserver(Observer* observer) OVERRIDE;
- virtual void RemoveObserver(Observer* observer) OVERRIDE;
- virtual std::vector<dbus::ObjectPath> GetDescriptors() OVERRIDE;
+ virtual void AddObserver(Observer* observer) override;
+ virtual void RemoveObserver(Observer* observer) override;
+ virtual std::vector<dbus::ObjectPath> GetDescriptors() override;
virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
- OVERRIDE;
+ override;
virtual void ReadValue(const dbus::ObjectPath& object_path,
const ValueCallback& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
virtual void WriteValue(const dbus::ObjectPath& object_path,
const std::vector<uint8>& value,
const base::Closure& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
// Makes the descriptor with the UUID |uuid| visible under the characteristic
// with object path |characteristic_path|. Descriptor object paths are

Powered by Google App Engine
This is Rietveld 408576698