| Index: athena/screen/screen_manager_impl.cc
|
| diff --git a/athena/screen/screen_manager_impl.cc b/athena/screen/screen_manager_impl.cc
|
| index 9cc22e7390de0001f9c245550c37959f0ceba07f..749fd25ae02d426bb22f1396750b12f81bf3cd84 100644
|
| --- a/athena/screen/screen_manager_impl.cc
|
| +++ b/athena/screen/screen_manager_impl.cc
|
| @@ -80,7 +80,7 @@ aura::Window* GetContainer(aura::Window* window) {
|
| class AthenaFocusRules : public wm::BaseFocusRules {
|
| public:
|
| AthenaFocusRules() {}
|
| - virtual ~AthenaFocusRules() {}
|
| + ~AthenaFocusRules() override {}
|
|
|
| // wm::BaseFocusRules:
|
| virtual bool SupportsChildActivation(aura::Window* window) const override {
|
| @@ -124,7 +124,7 @@ class AthenaScreenPositionClient : public aura::client::ScreenPositionClient {
|
| public:
|
| AthenaScreenPositionClient() {
|
| }
|
| - virtual ~AthenaScreenPositionClient() {
|
| + ~AthenaScreenPositionClient() override {
|
| }
|
|
|
| private:
|
| @@ -161,7 +161,7 @@ class AthenaWindowTargeter : public aura::WindowTargeter {
|
| explicit AthenaWindowTargeter(aura::Window* root_window)
|
| : root_window_(root_window) {}
|
|
|
| - virtual ~AthenaWindowTargeter() {}
|
| + ~AthenaWindowTargeter() override {}
|
|
|
| private:
|
| // aura::WindowTargeter:
|
|
|