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