| 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_SHELL_PORT_MASH_H_ | 5 #ifndef ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_ |
| 6 #define ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_ | 6 #define ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 bool IsMouseEventsEnabled() override; | 82 bool IsMouseEventsEnabled() override; |
| 83 std::vector<WmWindow*> GetAllRootWindows() override; | 83 std::vector<WmWindow*> GetAllRootWindows() override; |
| 84 void RecordGestureAction(GestureActionType action) override; | 84 void RecordGestureAction(GestureActionType action) override; |
| 85 void RecordUserMetricsAction(UserMetricsAction action) override; | 85 void RecordUserMetricsAction(UserMetricsAction action) override; |
| 86 void RecordTaskSwitchMetric(TaskSwitchSource source) override; | 86 void RecordTaskSwitchMetric(TaskSwitchSource source) override; |
| 87 std::unique_ptr<WindowResizer> CreateDragWindowResizer( | 87 std::unique_ptr<WindowResizer> CreateDragWindowResizer( |
| 88 std::unique_ptr<WindowResizer> next_window_resizer, | 88 std::unique_ptr<WindowResizer> next_window_resizer, |
| 89 wm::WindowState* window_state) override; | 89 wm::WindowState* window_state) override; |
| 90 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() | 90 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() |
| 91 override; | 91 override; |
| 92 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler() | 92 std::unique_ptr<wm::TabletModeEventHandler> CreateTabletModeEventHandler() |
| 93 override; | 93 override; |
| 94 std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler( | 94 std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler( |
| 95 WmWindow* workspace_window) override; | 95 WmWindow* workspace_window) override; |
| 96 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> | 96 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> |
| 97 CreateScopedDisableInternalMouseAndKeyboard() override; | 97 CreateScopedDisableInternalMouseAndKeyboard() override; |
| 98 std::unique_ptr<ImmersiveFullscreenController> | 98 std::unique_ptr<ImmersiveFullscreenController> |
| 99 CreateImmersiveFullscreenController() override; | 99 CreateImmersiveFullscreenController() override; |
| 100 std::unique_ptr<KeyboardUI> CreateKeyboardUI() override; | 100 std::unique_ptr<KeyboardUI> CreateKeyboardUI() override; |
| 101 std::unique_ptr<KeyEventWatcher> CreateKeyEventWatcher() override; | 101 std::unique_ptr<KeyEventWatcher> CreateKeyEventWatcher() override; |
| 102 SessionStateDelegate* GetSessionStateDelegate() override; | 102 SessionStateDelegate* GetSessionStateDelegate() override; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 bool added_display_observer_ = false; | 163 bool added_display_observer_ = false; |
| 164 base::ObserverList<WmDisplayObserver> display_observers_; | 164 base::ObserverList<WmDisplayObserver> display_observers_; |
| 165 | 165 |
| 166 DISALLOW_COPY_AND_ASSIGN(ShellPortMash); | 166 DISALLOW_COPY_AND_ASSIGN(ShellPortMash); |
| 167 }; | 167 }; |
| 168 | 168 |
| 169 } // namespace mus | 169 } // namespace mus |
| 170 } // namespace ash | 170 } // namespace ash |
| 171 | 171 |
| 172 #endif // ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_ | 172 #endif // ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_ |
| OLD | NEW |