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