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

Unified Diff: device/battery/battery_status_manager_default.cc

Issue 822683005: virtual/override specifier cleanup in device/battery/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/battery/battery_status_manager_default.cc
diff --git a/device/battery/battery_status_manager_default.cc b/device/battery/battery_status_manager_default.cc
index 90c6f8196890633fc6d581d1a3d5992558ee196e..bb392907f72f63afbc182f80a157365530e9e171 100644
--- a/device/battery/battery_status_manager_default.cc
+++ b/device/battery/battery_status_manager_default.cc
@@ -14,16 +14,16 @@ class BatteryStatusManagerDefault : public BatteryStatusManager {
public:
explicit BatteryStatusManagerDefault(
const BatteryStatusService::BatteryUpdateCallback& callback) {}
- virtual ~BatteryStatusManagerDefault() {}
+ ~BatteryStatusManagerDefault() override {}
private:
// BatteryStatusManager:
- virtual bool StartListeningBatteryChange() override {
+ bool StartListeningBatteryChange() override {
NOTIMPLEMENTED();
return false;
}
- virtual void StopListeningBatteryChange() override { NOTIMPLEMENTED(); }
+ void StopListeningBatteryChange() override { NOTIMPLEMENTED(); }
DISALLOW_COPY_AND_ASSIGN(BatteryStatusManagerDefault);
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698