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

Unified Diff: athena/system/status_icon_container_view.cc

Issue 641683003: C++11 override style change for athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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
« no previous file with comments | « athena/system/status_icon_container_view.h ('k') | athena/system/system_ui_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/system/status_icon_container_view.cc
diff --git a/athena/system/status_icon_container_view.cc b/athena/system/status_icon_container_view.cc
index 8b022a1dc60e187d47f9edf0bf3254bf49e76783..c0c1fcae6cd4245161c28f530529cb85a000dc78 100644
--- a/athena/system/status_icon_container_view.cc
+++ b/athena/system/status_icon_container_view.cc
@@ -59,7 +59,7 @@ class StatusIconContainerView::PowerStatus
->RequestStatusUpdate();
}
- virtual ~PowerStatus() {
+ ~PowerStatus() override {
chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->RemoveObserver(
this);
}
@@ -120,7 +120,7 @@ class StatusIconContainerView::NetworkStatus
handler->AddObserver(this, FROM_HERE);
}
- virtual ~NetworkStatus() {
+ ~NetworkStatus() override {
chromeos::NetworkStateHandler* handler =
chromeos::NetworkHandler::Get()->network_state_handler();
handler->RemoveObserver(this, FROM_HERE);
@@ -181,7 +181,7 @@ class StatusIconContainerView::UpdateStatus
RequestUpdateCheck(base::Bind(StartUpdateCallback));
}
- virtual ~UpdateStatus() {
+ ~UpdateStatus() override {
chromeos::DBusThreadManager::Get()->GetUpdateEngineClient()->RemoveObserver(
this);
}
« no previous file with comments | « athena/system/status_icon_container_view.h ('k') | athena/system/system_ui_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698