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

Unified Diff: content/browser/battery_status/battery_status_manager_chromeos.cc

Issue 633543002: Replace OVERRIDE and FINAL with override and final in content/browser/battery_status[a-s]* (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: content/browser/battery_status/battery_status_manager_chromeos.cc
diff --git a/content/browser/battery_status/battery_status_manager_chromeos.cc b/content/browser/battery_status/battery_status_manager_chromeos.cc
index a0952501dedd445ea5305257ae1044955ddcac98..8954f656d5021b1ac88ba090bfb10f1eeed3bf75 100644
--- a/content/browser/battery_status/battery_status_manager_chromeos.cc
+++ b/content/browser/battery_status/battery_status_manager_chromeos.cc
@@ -103,7 +103,7 @@ class PowerManagerObserver
// chromeos::PowerManagerClient::Observer:
virtual void PowerChanged(
- const power_manager::PowerSupplyProperties& proto) OVERRIDE {
+ const power_manager::PowerSupplyProperties& proto) override {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
blink::WebBatteryStatus status;
// Use the default values if there is no battery in the system.
@@ -156,13 +156,13 @@ class BatteryStatusManagerChromeOS
private:
// BatteryStatusManager:
- virtual bool StartListeningBatteryChange() OVERRIDE {
+ virtual bool StartListeningBatteryChange() override {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
observer_->Start();
return true;
}
- virtual void StopListeningBatteryChange() OVERRIDE {
+ virtual void StopListeningBatteryChange() override {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
observer_->Stop();
}

Powered by Google App Engine
This is Rietveld 408576698