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

Unified Diff: device/bluetooth/bluetooth_gatt_connection_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_gatt_connection_chromeos.h
diff --git a/device/bluetooth/bluetooth_gatt_connection_chromeos.h b/device/bluetooth/bluetooth_gatt_connection_chromeos.h
index beade19d17bf76088d99a6d5046a5132e8e30703..5f5c4bf8bb123ce538a6b56f85c82c6215742501 100644
--- a/device/bluetooth/bluetooth_gatt_connection_chromeos.h
+++ b/device/bluetooth/bluetooth_gatt_connection_chromeos.h
@@ -34,16 +34,16 @@ class BluetoothGattConnectionChromeOS
virtual ~BluetoothGattConnectionChromeOS();
// BluetoothGattConnection overrides.
- virtual std::string GetDeviceAddress() const OVERRIDE;
- virtual bool IsConnected() OVERRIDE;
- virtual void Disconnect(const base::Closure& callback) OVERRIDE;
+ virtual std::string GetDeviceAddress() const override;
+ virtual bool IsConnected() override;
+ virtual void Disconnect(const base::Closure& callback) override;
private:
// chromeos::BluetoothDeviceClient::Observer overrides.
- virtual void DeviceRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
+ virtual void DeviceRemoved(const dbus::ObjectPath& object_path) override;
virtual void DevicePropertyChanged(const dbus::ObjectPath& object_path,
- const std::string& property_name) OVERRIDE;
+ const std::string& property_name) override;
// True, if the connection is currently active.
bool connected_;
« no previous file with comments | « device/bluetooth/bluetooth_gatt_chromeos_unittest.cc ('k') | device/bluetooth/bluetooth_gatt_notify_session_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698