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