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

Unified Diff: chromeos/dbus/nfc_manager_client.cc

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
« no previous file with comments | « chromeos/dbus/nfc_device_client.cc ('k') | chromeos/dbus/nfc_property_set.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/nfc_manager_client.cc
diff --git a/chromeos/dbus/nfc_manager_client.cc b/chromeos/dbus/nfc_manager_client.cc
index cf8c3d3a9902d7b8d0798545698fa8e904cc6a46..00a99d910586cf95862c8362eeb890ee877e3f10 100644
--- a/chromeos/dbus/nfc_manager_client.cc
+++ b/chromeos/dbus/nfc_manager_client.cc
@@ -37,25 +37,25 @@ class NfcManagerClientImpl : public NfcManagerClient {
}
// NfcManagerClient override.
- virtual void AddObserver(Observer* observer) OVERRIDE {
+ virtual void AddObserver(Observer* observer) override {
DCHECK(observer);
observers_.AddObserver(observer);
}
// NfcManagerClient override.
- virtual void RemoveObserver(Observer* observer) OVERRIDE {
+ virtual void RemoveObserver(Observer* observer) override {
DCHECK(observer);
observers_.RemoveObserver(observer);
}
// NfcManagerClient override.
- virtual Properties* GetProperties() OVERRIDE {
+ virtual Properties* GetProperties() override {
return properties_.get();
}
protected:
// DBusClient override.
- virtual void Init(dbus::Bus* bus) OVERRIDE {
+ virtual void Init(dbus::Bus* bus) override {
VLOG(1) << "Creating NfcManagerClientImpl";
// Create the object proxy.
« no previous file with comments | « chromeos/dbus/nfc_device_client.cc ('k') | chromeos/dbus/nfc_property_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698