| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_EXO_WM_HELPER_ASH_H_ | 5 #ifndef COMPONENTS_EXO_WM_HELPER_ASH_H_ |
| 6 #define COMPONENTS_EXO_WM_HELPER_ASH_H_ | 6 #define COMPONENTS_EXO_WM_HELPER_ASH_H_ |
| 7 | 7 |
| 8 #include "ash/common/shell_observer.h" | 8 #include "ash/common/shell_observer.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "components/exo/wm_helper.h" | 10 #include "components/exo/wm_helper.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 void OnWindowFocused(aura::Window* gained_focus, | 48 void OnWindowFocused(aura::Window* gained_focus, |
| 49 aura::Window* lost_focus) override; | 49 aura::Window* lost_focus) override; |
| 50 | 50 |
| 51 // Overriden from aura::client::CursorClientObserver: | 51 // Overriden from aura::client::CursorClientObserver: |
| 52 void OnCursorVisibilityChanged(bool is_visible) override; | 52 void OnCursorVisibilityChanged(bool is_visible) override; |
| 53 void OnCursorSetChanged(ui::CursorSetType cursor_set) override; | 53 void OnCursorSetChanged(ui::CursorSetType cursor_set) override; |
| 54 | 54 |
| 55 // Overriden from ash::ShellObserver: | 55 // Overriden from ash::ShellObserver: |
| 56 void OnMaximizeModeStarted() override; | 56 void OnMaximizeModeStarted() override; |
| 57 void OnMaximizeModeEnded() override; | 57 void OnMaximizeModeEnded() override; |
| 58 void OnOverviewModeStarting() override; |
| 59 void OnOverviewModeEnded() override; |
| 58 | 60 |
| 59 private: | 61 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(WMHelperAsh); | 62 DISALLOW_COPY_AND_ASSIGN(WMHelperAsh); |
| 61 }; | 63 }; |
| 62 | 64 |
| 63 } // namespace exo | 65 } // namespace exo |
| 64 | 66 |
| 65 #endif // COMPONENTS_EXO_WM_HELPER_H_ | 67 #endif // COMPONENTS_EXO_WM_HELPER_H_ |
| OLD | NEW |