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

Side by Side Diff: ash/common/wm_shell.h

Issue 2381753002: Use mojo SystemTray interfaces for both mash and classic ash (Closed)
Patch Set: rebase again Created 4 years, 2 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
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.cc ('k') | ash/common/wm_shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_COMMON_WM_SHELL_H_ 5 #ifndef ASH_COMMON_WM_SHELL_H_
6 #define ASH_COMMON_WM_SHELL_H_ 6 #define ASH_COMMON_WM_SHELL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 16 matching lines...) Expand all
27 namespace display { 27 namespace display {
28 class Display; 28 class Display;
29 class ManagedDisplayInfo; 29 class ManagedDisplayInfo;
30 } 30 }
31 31
32 namespace gfx { 32 namespace gfx {
33 class Insets; 33 class Insets;
34 class Point; 34 class Point;
35 } 35 }
36 36
37 namespace shell {
38 class Connector;
39 }
40
37 namespace views { 41 namespace views {
38 class PointerWatcher; 42 class PointerWatcher;
39 enum class PointerWatcherEventTypes; 43 enum class PointerWatcherEventTypes;
40 } 44 }
41 45
42 namespace ash { 46 namespace ash {
43 47
44 class AcceleratorController; 48 class AcceleratorController;
45 class AccessibilityDelegate; 49 class AccessibilityDelegate;
46 class BrightnessControlDelegate; 50 class BrightnessControlDelegate;
47 class FocusCycler; 51 class FocusCycler;
48 class ImmersiveContextAsh; 52 class ImmersiveContextAsh;
49 class ImmersiveFullscreenController; 53 class ImmersiveFullscreenController;
50 class KeyEventWatcher; 54 class KeyEventWatcher;
51 class KeyboardBrightnessControlDelegate; 55 class KeyboardBrightnessControlDelegate;
52 class KeyboardUI; 56 class KeyboardUI;
53 class MaximizeModeController; 57 class MaximizeModeController;
54 class MruWindowTracker; 58 class MruWindowTracker;
55 class NewWindowDelegate; 59 class NewWindowDelegate;
56 class PaletteDelegate; 60 class PaletteDelegate;
57 class ScopedDisableInternalMouseAndKeyboard; 61 class ScopedDisableInternalMouseAndKeyboard;
58 class SessionStateDelegate; 62 class SessionStateDelegate;
59 class ShelfDelegate; 63 class ShelfDelegate;
60 class ShelfModel; 64 class ShelfModel;
61 class ShelfWindowWatcher; 65 class ShelfWindowWatcher;
62 class ShellDelegate; 66 class ShellDelegate;
63 class ShellObserver; 67 class ShellObserver;
64 class SystemTrayDelegate; 68 class SystemTrayDelegate;
69 class SystemTrayController;
65 class SystemTrayNotifier; 70 class SystemTrayNotifier;
66 class ToastManager; 71 class ToastManager;
67 class WallpaperController; 72 class WallpaperController;
68 class WallpaperDelegate; 73 class WallpaperDelegate;
69 class WindowCycleController; 74 class WindowCycleController;
70 class WindowCycleEventFilter; 75 class WindowCycleEventFilter;
71 class WindowResizer; 76 class WindowResizer;
72 class WindowSelectorController; 77 class WindowSelectorController;
73 class WmActivationObserver; 78 class WmActivationObserver;
74 class WmDisplayObserver; 79 class WmDisplayObserver;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 void set_root_window_for_new_windows(WmWindow* root) { 142 void set_root_window_for_new_windows(WmWindow* root) {
138 root_window_for_new_windows_ = root; 143 root_window_for_new_windows_ = root;
139 } 144 }
140 145
141 PaletteDelegate* palette_delegate() { return palette_delegate_.get(); } 146 PaletteDelegate* palette_delegate() { return palette_delegate_.get(); }
142 147
143 ShelfDelegate* shelf_delegate() { return shelf_delegate_.get(); } 148 ShelfDelegate* shelf_delegate() { return shelf_delegate_.get(); }
144 149
145 ShelfModel* shelf_model() { return shelf_model_.get(); } 150 ShelfModel* shelf_model() { return shelf_model_.get(); }
146 151
152 SystemTrayController* system_tray_controller() {
153 return system_tray_controller_.get();
154 }
155
147 SystemTrayNotifier* system_tray_notifier() { 156 SystemTrayNotifier* system_tray_notifier() {
148 return system_tray_notifier_.get(); 157 return system_tray_notifier_.get();
149 } 158 }
150 159
151 SystemTrayDelegate* system_tray_delegate() { 160 SystemTrayDelegate* system_tray_delegate() {
152 return system_tray_delegate_.get(); 161 return system_tray_delegate_.get();
153 } 162 }
154 163
155 ToastManager* toast_manager() { return toast_manager_.get(); } 164 ToastManager* toast_manager() { return toast_manager_.get(); }
156 165
157 WallpaperController* wallpaper_controller() { 166 WallpaperController* wallpaper_controller() {
158 return wallpaper_controller_.get(); 167 return wallpaper_controller_.get();
159 } 168 }
160 169
161 WallpaperDelegate* wallpaper_delegate() { return wallpaper_delegate_.get(); } 170 WallpaperDelegate* wallpaper_delegate() { return wallpaper_delegate_.get(); }
162 171
163 WindowCycleController* window_cycle_controller() { 172 WindowCycleController* window_cycle_controller() {
164 return window_cycle_controller_.get(); 173 return window_cycle_controller_.get();
165 } 174 }
166 175
167 WindowSelectorController* window_selector_controller() { 176 WindowSelectorController* window_selector_controller() {
168 return window_selector_controller_.get(); 177 return window_selector_controller_.get();
169 } 178 }
170 179
180 // Returns true when ash is running in its own mojo application/service.
181 virtual bool IsRunningInMash() const = 0;
182
171 virtual WmWindow* NewWindow(ui::wm::WindowType window_type, 183 virtual WmWindow* NewWindow(ui::wm::WindowType window_type,
172 ui::LayerType layer_type) = 0; 184 ui::LayerType layer_type) = 0;
173 185
174 virtual WmWindow* GetFocusedWindow() = 0; 186 virtual WmWindow* GetFocusedWindow() = 0;
175 virtual WmWindow* GetActiveWindow() = 0; 187 virtual WmWindow* GetActiveWindow() = 0;
176 188
177 virtual WmWindow* GetCaptureWindow() = 0; 189 virtual WmWindow* GetCaptureWindow() = 0;
178 190
179 // Convenience for GetPrimaryRootWindow()->GetRootWindowController(). 191 // Convenience for GetPrimaryRootWindow()->GetRootWindowController().
180 WmRootWindowController* GetPrimaryRootWindowController(); 192 WmRootWindowController* GetPrimaryRootWindowController();
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 keyboard_brightness_control_delegate_; 458 keyboard_brightness_control_delegate_;
447 std::unique_ptr<KeyboardUI> keyboard_ui_; 459 std::unique_ptr<KeyboardUI> keyboard_ui_;
448 std::unique_ptr<MaximizeModeController> maximize_mode_controller_; 460 std::unique_ptr<MaximizeModeController> maximize_mode_controller_;
449 std::unique_ptr<MediaDelegate> media_delegate_; 461 std::unique_ptr<MediaDelegate> media_delegate_;
450 std::unique_ptr<MruWindowTracker> mru_window_tracker_; 462 std::unique_ptr<MruWindowTracker> mru_window_tracker_;
451 std::unique_ptr<NewWindowDelegate> new_window_delegate_; 463 std::unique_ptr<NewWindowDelegate> new_window_delegate_;
452 std::unique_ptr<PaletteDelegate> palette_delegate_; 464 std::unique_ptr<PaletteDelegate> palette_delegate_;
453 std::unique_ptr<ShelfDelegate> shelf_delegate_; 465 std::unique_ptr<ShelfDelegate> shelf_delegate_;
454 std::unique_ptr<ShelfModel> shelf_model_; 466 std::unique_ptr<ShelfModel> shelf_model_;
455 std::unique_ptr<ShelfWindowWatcher> shelf_window_watcher_; 467 std::unique_ptr<ShelfWindowWatcher> shelf_window_watcher_;
468 std::unique_ptr<SystemTrayController> system_tray_controller_;
456 std::unique_ptr<SystemTrayNotifier> system_tray_notifier_; 469 std::unique_ptr<SystemTrayNotifier> system_tray_notifier_;
457 std::unique_ptr<SystemTrayDelegate> system_tray_delegate_; 470 std::unique_ptr<SystemTrayDelegate> system_tray_delegate_;
458 std::unique_ptr<ToastManager> toast_manager_; 471 std::unique_ptr<ToastManager> toast_manager_;
459 std::unique_ptr<WallpaperController> wallpaper_controller_; 472 std::unique_ptr<WallpaperController> wallpaper_controller_;
460 std::unique_ptr<WallpaperDelegate> wallpaper_delegate_; 473 std::unique_ptr<WallpaperDelegate> wallpaper_delegate_;
461 std::unique_ptr<WindowCycleController> window_cycle_controller_; 474 std::unique_ptr<WindowCycleController> window_cycle_controller_;
462 std::unique_ptr<WindowSelectorController> window_selector_controller_; 475 std::unique_ptr<WindowSelectorController> window_selector_controller_;
463 476
464 base::ObserverList<LockStateObserver> lock_state_observers_; 477 base::ObserverList<LockStateObserver> lock_state_observers_;
465 478
466 // See comment for GetRootWindowForNewWindows(). 479 // See comment for GetRootWindowForNewWindows().
467 WmWindow* root_window_for_new_windows_ = nullptr; 480 WmWindow* root_window_for_new_windows_ = nullptr;
468 WmWindow* scoped_root_window_for_new_windows_ = nullptr; 481 WmWindow* scoped_root_window_for_new_windows_ = nullptr;
469 482
470 bool simulate_modal_window_open_for_testing_ = false; 483 bool simulate_modal_window_open_for_testing_ = false;
471 484
472 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; 485 scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
473 486
474 #if defined(OS_CHROMEOS) 487 #if defined(OS_CHROMEOS)
475 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; 488 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_;
476 #endif 489 #endif
477 }; 490 };
478 491
479 } // namespace ash 492 } // namespace ash
480 493
481 #endif // ASH_COMMON_WM_SHELL_H_ 494 #endif // ASH_COMMON_WM_SHELL_H_
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.cc ('k') | ash/common/wm_shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698