| 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 ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ | 5 #ifndef ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ |
| 6 #define ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ | 6 #define ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ui::MenuSourceType source_type) override; | 77 ui::MenuSourceType source_type) override; |
| 78 std::unique_ptr<WindowResizer> CreateDragWindowResizer( | 78 std::unique_ptr<WindowResizer> CreateDragWindowResizer( |
| 79 std::unique_ptr<WindowResizer> next_window_resizer, | 79 std::unique_ptr<WindowResizer> next_window_resizer, |
| 80 wm::WindowState* window_state) override; | 80 wm::WindowState* window_state) override; |
| 81 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() | 81 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() |
| 82 override; | 82 override; |
| 83 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler() | 83 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler() |
| 84 override; | 84 override; |
| 85 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> | 85 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> |
| 86 CreateScopedDisableInternalMouseAndKeyboard() override; | 86 CreateScopedDisableInternalMouseAndKeyboard() override; |
| 87 std::unique_ptr<WmImmersiveFullscreenController> |
| 88 CreateImmersiveFullscreenController() override; |
| 87 void OnOverviewModeStarting() override; | 89 void OnOverviewModeStarting() override; |
| 88 void OnOverviewModeEnded() override; | 90 void OnOverviewModeEnded() override; |
| 89 SessionStateDelegate* GetSessionStateDelegate() override; | 91 SessionStateDelegate* GetSessionStateDelegate() override; |
| 90 void AddActivationObserver(WmActivationObserver* observer) override; | 92 void AddActivationObserver(WmActivationObserver* observer) override; |
| 91 void RemoveActivationObserver(WmActivationObserver* observer) override; | 93 void RemoveActivationObserver(WmActivationObserver* observer) override; |
| 92 void AddDisplayObserver(WmDisplayObserver* observer) override; | 94 void AddDisplayObserver(WmDisplayObserver* observer) override; |
| 93 void RemoveDisplayObserver(WmDisplayObserver* observer) override; | 95 void RemoveDisplayObserver(WmDisplayObserver* observer) override; |
| 94 void AddPointerWatcher(views::PointerWatcher* watcher) override; | 96 void AddPointerWatcher(views::PointerWatcher* watcher) override; |
| 95 void RemovePointerWatcher(views::PointerWatcher* watcher) override; | 97 void RemovePointerWatcher(views::PointerWatcher* watcher) override; |
| 96 bool IsTouchDown() override; | 98 bool IsTouchDown() override; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 123 | 125 |
| 124 base::ObserverList<WmActivationObserver> activation_observers_; | 126 base::ObserverList<WmActivationObserver> activation_observers_; |
| 125 | 127 |
| 126 DISALLOW_COPY_AND_ASSIGN(WmShellMus); | 128 DISALLOW_COPY_AND_ASSIGN(WmShellMus); |
| 127 }; | 129 }; |
| 128 | 130 |
| 129 } // namespace mus | 131 } // namespace mus |
| 130 } // namespace ash | 132 } // namespace ash |
| 131 | 133 |
| 132 #endif // ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ | 134 #endif // ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ |
| OLD | NEW |