Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: ash/mus/bridge/wm_shell_mus.h

Issue 2285703003: Moves WorkspaceEventHandler to ash/common (Closed)
Patch Set: merge to tip of tree Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 void RecordTaskSwitchMetric(TaskSwitchSource source) override; 87 void RecordTaskSwitchMetric(TaskSwitchSource source) override;
88 void ShowContextMenu(const gfx::Point& location_in_screen, 88 void ShowContextMenu(const gfx::Point& location_in_screen,
89 ui::MenuSourceType source_type) override; 89 ui::MenuSourceType source_type) override;
90 std::unique_ptr<WindowResizer> CreateDragWindowResizer( 90 std::unique_ptr<WindowResizer> CreateDragWindowResizer(
91 std::unique_ptr<WindowResizer> next_window_resizer, 91 std::unique_ptr<WindowResizer> next_window_resizer,
92 wm::WindowState* window_state) override; 92 wm::WindowState* window_state) override;
93 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter() 93 std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter()
94 override; 94 override;
95 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler() 95 std::unique_ptr<wm::MaximizeModeEventHandler> CreateMaximizeModeEventHandler()
96 override; 96 override;
97 std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler(
98 WmWindow* workspace_window) override;
97 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> 99 std::unique_ptr<ScopedDisableInternalMouseAndKeyboard>
98 CreateScopedDisableInternalMouseAndKeyboard() override; 100 CreateScopedDisableInternalMouseAndKeyboard() override;
99 std::unique_ptr<ImmersiveFullscreenController> 101 std::unique_ptr<ImmersiveFullscreenController>
100 CreateImmersiveFullscreenController() override; 102 CreateImmersiveFullscreenController() override;
101 void OnOverviewModeStarting() override; 103 void OnOverviewModeStarting() override;
102 void OnOverviewModeEnded() override; 104 void OnOverviewModeEnded() override;
103 SessionStateDelegate* GetSessionStateDelegate() override; 105 SessionStateDelegate* GetSessionStateDelegate() override;
104 void AddActivationObserver(WmActivationObserver* observer) override; 106 void AddActivationObserver(WmActivationObserver* observer) override;
105 void RemoveActivationObserver(WmActivationObserver* observer) override; 107 void RemoveActivationObserver(WmActivationObserver* observer) override;
106 void AddDisplayObserver(WmDisplayObserver* observer) override; 108 void AddDisplayObserver(WmDisplayObserver* observer) override;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 143
142 base::ObserverList<WmActivationObserver> activation_observers_; 144 base::ObserverList<WmActivationObserver> activation_observers_;
143 145
144 DISALLOW_COPY_AND_ASSIGN(WmShellMus); 146 DISALLOW_COPY_AND_ASSIGN(WmShellMus);
145 }; 147 };
146 148
147 } // namespace mus 149 } // namespace mus
148 } // namespace ash 150 } // namespace ash
149 151
150 #endif // ASH_MUS_BRIDGE_WM_SHELL_MUS_H_ 152 #endif // ASH_MUS_BRIDGE_WM_SHELL_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698