| 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/shell_observer.h" | 8 #include "ash/shell_observer.h" |
| 9 #include "ash/wm_display_observer.h" | 9 #include "ash/wm_display_observer.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 int64_t display_id) const override; | 33 int64_t display_id) const override; |
| 34 aura::Window* GetContainer(int container_id) override; | 34 aura::Window* GetContainer(int container_id) override; |
| 35 aura::Window* GetActiveWindow() const override; | 35 aura::Window* GetActiveWindow() const override; |
| 36 aura::Window* GetFocusedWindow() const override; | 36 aura::Window* GetFocusedWindow() const override; |
| 37 ui::CursorSetType GetCursorSet() const override; | 37 ui::CursorSetType GetCursorSet() const override; |
| 38 void AddPreTargetHandler(ui::EventHandler* handler) override; | 38 void AddPreTargetHandler(ui::EventHandler* handler) override; |
| 39 void PrependPreTargetHandler(ui::EventHandler* handler) override; | 39 void PrependPreTargetHandler(ui::EventHandler* handler) override; |
| 40 void RemovePreTargetHandler(ui::EventHandler* handler) override; | 40 void RemovePreTargetHandler(ui::EventHandler* handler) override; |
| 41 void AddPostTargetHandler(ui::EventHandler* handler) override; | 41 void AddPostTargetHandler(ui::EventHandler* handler) override; |
| 42 void RemovePostTargetHandler(ui::EventHandler* handler) override; | 42 void RemovePostTargetHandler(ui::EventHandler* handler) override; |
| 43 bool IsMaximizeModeWindowManagerEnabled() const override; | 43 bool IsTabletModeWindowManagerEnabled() const override; |
| 44 | 44 |
| 45 // Overridden from aura::client::ActivationChangeObserver: | 45 // Overridden from aura::client::ActivationChangeObserver: |
| 46 void OnWindowActivated( | 46 void OnWindowActivated( |
| 47 aura::client::ActivationChangeObserver::ActivationReason reason, | 47 aura::client::ActivationChangeObserver::ActivationReason reason, |
| 48 aura::Window* gained_active, | 48 aura::Window* gained_active, |
| 49 aura::Window* lost_active) override; | 49 aura::Window* lost_active) override; |
| 50 | 50 |
| 51 // Overridden from aura::client::FocusChangeObserver: | 51 // Overridden from aura::client::FocusChangeObserver: |
| 52 void OnWindowFocused(aura::Window* gained_focus, | 52 void OnWindowFocused(aura::Window* gained_focus, |
| 53 aura::Window* lost_focus) override; | 53 aura::Window* lost_focus) override; |
| 54 | 54 |
| 55 // Overridden from aura::client::CursorClientObserver: | 55 // Overridden from aura::client::CursorClientObserver: |
| 56 void OnCursorVisibilityChanged(bool is_visible) override; | 56 void OnCursorVisibilityChanged(bool is_visible) override; |
| 57 void OnCursorSetChanged(ui::CursorSetType cursor_set) override; | 57 void OnCursorSetChanged(ui::CursorSetType cursor_set) override; |
| 58 | 58 |
| 59 // Overridden from ash::ShellObserver: | 59 // Overridden from ash::ShellObserver: |
| 60 void OnMaximizeModeStarted() override; | 60 void OnTabletModeStarted() override; |
| 61 void OnMaximizeModeEnding() override; | 61 void OnTabletModeEnding() override; |
| 62 void OnMaximizeModeEnded() override; | 62 void OnTabletModeEnded() override; |
| 63 | 63 |
| 64 // Overridden from ash::WmDisplayObserver: | 64 // Overridden from ash::WmDisplayObserver: |
| 65 void OnDisplayConfigurationChanged() override; | 65 void OnDisplayConfigurationChanged() override; |
| 66 | 66 |
| 67 // Overridden from ui::InputDeviceEventObserver: | 67 // Overridden from ui::InputDeviceEventObserver: |
| 68 void OnKeyboardDeviceConfigurationChanged() override; | 68 void OnKeyboardDeviceConfigurationChanged() override; |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 DISALLOW_COPY_AND_ASSIGN(WMHelperAsh); | 71 DISALLOW_COPY_AND_ASSIGN(WMHelperAsh); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace exo | 74 } // namespace exo |
| 75 | 75 |
| 76 #endif // COMPONENTS_EXO_WM_HELPER_H_ | 76 #endif // COMPONENTS_EXO_WM_HELPER_H_ |
| OLD | NEW |