| 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();
|
| }
|
|
|