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

Unified Diff: chrome/browser/chromeos/power/peripheral_battery_observer.cc

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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: chrome/browser/chromeos/power/peripheral_battery_observer.cc
diff --git a/chrome/browser/chromeos/power/peripheral_battery_observer.cc b/chrome/browser/chromeos/power/peripheral_battery_observer.cc
index 5e4a7f3d80f9bd2f6205fe2e716b3a9157ebce94..d3f99c1e3dc7a1bcb6f1f2191b07e7cc93601fa1 100644
--- a/chrome/browser/chromeos/power/peripheral_battery_observer.cc
+++ b/chrome/browser/chromeos/power/peripheral_battery_observer.cc
@@ -74,14 +74,14 @@ class PeripheralBatteryNotificationDelegate : public NotificationDelegate {
: id_(id) {}
// Overridden from NotificationDelegate:
- virtual void Display() OVERRIDE {}
- virtual void Error() OVERRIDE {}
- virtual void Close(bool by_user) OVERRIDE {}
- virtual void Click() OVERRIDE {}
- virtual std::string id() const OVERRIDE { return id_; }
+ virtual void Display() override {}
+ virtual void Error() override {}
+ virtual void Close(bool by_user) override {}
+ virtual void Click() override {}
+ virtual std::string id() const override { return id_; }
// A NULL return value prevents loading image from URL. It is OK since our
// implementation loads image from system resource bundle.
- virtual content::WebContents* GetWebContents() const OVERRIDE {
+ virtual content::WebContents* GetWebContents() const override {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698