| Index: ash/wm/lock_window_state.h
|
| diff --git a/ash/wm/lock_window_state.h b/ash/wm/lock_window_state.h
|
| index c17faf76dc1d0ba5cb70658f754a9f682b212ed1..33a5b0b7a3a4d3c7e2e348bf05755560ed30a9d1 100644
|
| --- a/ash/wm/lock_window_state.h
|
| +++ b/ash/wm/lock_window_state.h
|
| @@ -18,15 +18,15 @@ class LockWindowState : public wm::WindowState::State {
|
| // The |window|'s state object will be modified to use this new window mode
|
| // state handler.
|
| explicit LockWindowState(aura::Window* window);
|
| - virtual ~LockWindowState();
|
| + ~LockWindowState() override;
|
|
|
| // WindowState::State overrides:
|
| - virtual void OnWMEvent(wm::WindowState* window_state,
|
| - const wm::WMEvent* event) override;
|
| - virtual wm::WindowStateType GetType() const override;
|
| - virtual void AttachState(wm::WindowState* window_state,
|
| - wm::WindowState::State* previous_state) override;
|
| - virtual void DetachState(wm::WindowState* window_state) override;
|
| + void OnWMEvent(wm::WindowState* window_state,
|
| + const wm::WMEvent* event) override;
|
| + wm::WindowStateType GetType() const override;
|
| + void AttachState(wm::WindowState* window_state,
|
| + wm::WindowState::State* previous_state) override;
|
| + void DetachState(wm::WindowState* window_state) override;
|
|
|
| // Creates new LockWindowState instance and attaches it to |window|.
|
| static wm::WindowState* SetLockWindowState(aura::Window* window);
|
|
|