| Index: athena/system/system_ui_impl.cc
|
| diff --git a/athena/system/system_ui_impl.cc b/athena/system/system_ui_impl.cc
|
| index 5bbd3ee9ba566613b2df7902a60cc1d54927db01..aa65e5e7fe8666ecdcba500f0a8b6260547dde02 100644
|
| --- a/athena/system/system_ui_impl.cc
|
| +++ b/athena/system/system_ui_impl.cc
|
| @@ -34,8 +34,7 @@ class SystemInfoView : public views::View {
|
| AddChildView(status_icon_view_);
|
| }
|
|
|
| - virtual ~SystemInfoView() {
|
| - }
|
| + ~SystemInfoView() override {}
|
|
|
| // views::View:
|
| virtual gfx::Size GetPreferredSize() const override {
|
| @@ -78,7 +77,7 @@ class SystemUIImpl : public SystemUI {
|
| orientation_controller_->InitWith(blocking_task_runner);
|
| }
|
|
|
| - virtual ~SystemUIImpl() {
|
| + ~SystemUIImpl() override {
|
| // Stops file watching now if exists. Waiting until message loop shutdon
|
| // leads to FilePathWatcher crash.
|
| orientation_controller_->Shutdown();
|
|
|