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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h

Issue 628873002: replace OVERRIDE and FINAL with override and final in device/ (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: device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
diff --git a/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h b/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
index d4ea1e68217a6a25d69b636b1cab334d29f573d4..f4a2a11777f9cac7bb0d4bc4d495b1b11ed1cf07 100644
--- a/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
+++ b/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
@@ -30,21 +30,21 @@ class BluetoothRemoteGattDescriptorChromeOS
: public device::BluetoothGattDescriptor {
public:
// device::BluetoothGattDescriptor overrides.
- virtual std::string GetIdentifier() const OVERRIDE;
- virtual device::BluetoothUUID GetUUID() const OVERRIDE;
- virtual bool IsLocal() const OVERRIDE;
- virtual const std::vector<uint8>& GetValue() const OVERRIDE;
+ virtual std::string GetIdentifier() const override;
+ virtual device::BluetoothUUID GetUUID() const override;
+ virtual bool IsLocal() const override;
+ virtual const std::vector<uint8>& GetValue() const override;
virtual device::BluetoothGattCharacteristic*
- GetCharacteristic() const OVERRIDE;
+ GetCharacteristic() const override;
virtual device::BluetoothGattCharacteristic::Permissions
- GetPermissions() const OVERRIDE;
+ GetPermissions() const override;
virtual void ReadRemoteDescriptor(
const ValueCallback& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
virtual void WriteRemoteDescriptor(
const std::vector<uint8>& new_value,
const base::Closure& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
// Object path of the underlying D-Bus characteristic.
const dbus::ObjectPath& object_path() const { return object_path_; }

Powered by Google App Engine
This is Rietveld 408576698