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

Unified Diff: athena/system/status_icon_container_view.cc

Issue 623103002: replace OVERRIDE and FINAL with override and final in athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 cc750fbb70be4bca04919c2b5a6eab69e361ca06..811c645cfa8d3a6e11953c1ba0f48d2bd54ea977 100644
--- a/athena/system/status_icon_container_view.cc
+++ b/athena/system/status_icon_container_view.cc
@@ -101,7 +101,7 @@ class StatusIconContainerView::PowerStatus
// chromeos::PowerManagerClient::Observer:
virtual void PowerChanged(
- const power_manager::PowerSupplyProperties& proto) OVERRIDE {
+ const power_manager::PowerSupplyProperties& proto) override {
icon_->SetImage(GetPowerIcon(proto));
}
@@ -145,17 +145,17 @@ class StatusIconContainerView::NetworkStatus
// chromeos::NetworkStateHandlerObserver:
virtual void DefaultNetworkChanged(
- const chromeos::NetworkState* network) OVERRIDE {
+ const chromeos::NetworkState* network) override {
Update();
}
virtual void NetworkConnectionStateChanged(
- const chromeos::NetworkState* network) OVERRIDE {
+ const chromeos::NetworkState* network) override {
Update();
}
virtual void NetworkPropertiesUpdated(
- const chromeos::NetworkState* network) OVERRIDE {
+ const chromeos::NetworkState* network) override {
Update();
}
@@ -188,7 +188,7 @@ class StatusIconContainerView::UpdateStatus
// chromeos::UpdateEngineClient::Observer:
virtual void UpdateStatusChanged(
- const chromeos::UpdateEngineClient::Status& status) OVERRIDE {
+ const chromeos::UpdateEngineClient::Status& status) override {
if (status.status !=
chromeos::UpdateEngineClient::UPDATE_STATUS_UPDATED_NEED_REBOOT) {
return;
« 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