OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SHELL_H_ | 5 #ifndef ASH_SHELL_H_ |
6 #define ASH_SHELL_H_ | 6 #define ASH_SHELL_H_ |
7 | 7 |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 class NonClientFrameView; | 57 class NonClientFrameView; |
58 class Widget; | 58 class Widget; |
59 namespace corewm { | 59 namespace corewm { |
60 class TooltipController; | 60 class TooltipController; |
61 } | 61 } |
62 } | 62 } |
63 | 63 |
64 namespace wm { | 64 namespace wm { |
65 class CompoundEventFilter; | 65 class CompoundEventFilter; |
66 class InputMethodEventFilter; | 66 class InputMethodEventFilter; |
| 67 class NestedAcceleratorController; |
67 class ShadowController; | 68 class ShadowController; |
68 class VisibilityController; | 69 class VisibilityController; |
69 class UserActivityDetector; | 70 class UserActivityDetector; |
70 class WindowModalityController; | 71 class WindowModalityController; |
71 } | 72 } |
72 | 73 |
73 namespace ash { | 74 namespace ash { |
74 | 75 |
75 class AcceleratorController; | 76 class AcceleratorController; |
76 class AccelerometerController; | 77 class AccelerometerController; |
(...skipping 22 matching lines...) Expand all Loading... |
99 class LastWindowClosedLogoutReminder; | 100 class LastWindowClosedLogoutReminder; |
100 class LocaleNotificationController; | 101 class LocaleNotificationController; |
101 class LockStateController; | 102 class LockStateController; |
102 class LogoutConfirmationController; | 103 class LogoutConfirmationController; |
103 class MagnificationController; | 104 class MagnificationController; |
104 class MaximizeModeController; | 105 class MaximizeModeController; |
105 class MaximizeModeWindowManager; | 106 class MaximizeModeWindowManager; |
106 class MediaDelegate; | 107 class MediaDelegate; |
107 class MouseCursorEventFilter; | 108 class MouseCursorEventFilter; |
108 class MruWindowTracker; | 109 class MruWindowTracker; |
109 class NestedDispatcherController; | |
110 class NewWindowDelegate; | 110 class NewWindowDelegate; |
111 class OverlayEventFilter; | 111 class OverlayEventFilter; |
112 class PartialMagnificationController; | 112 class PartialMagnificationController; |
113 class PowerButtonController; | 113 class PowerButtonController; |
114 class PowerEventObserver; | 114 class PowerEventObserver; |
115 class ProjectingObserver; | 115 class ProjectingObserver; |
116 class ResizeShadowController; | 116 class ResizeShadowController; |
117 class ResolutionNotificationController; | 117 class ResolutionNotificationController; |
118 class RootWindowController; | 118 class RootWindowController; |
119 class ScopedTargetRootWindow; | 119 class ScopedTargetRootWindow; |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
624 // |target_root_window_| never becomes NULL during the session. | 624 // |target_root_window_| never becomes NULL during the session. |
625 aura::Window* target_root_window_; | 625 aura::Window* target_root_window_; |
626 aura::Window* scoped_target_root_window_; | 626 aura::Window* scoped_target_root_window_; |
627 | 627 |
628 // The CompoundEventFilter owned by aura::Env object. | 628 // The CompoundEventFilter owned by aura::Env object. |
629 scoped_ptr< ::wm::CompoundEventFilter> env_filter_; | 629 scoped_ptr< ::wm::CompoundEventFilter> env_filter_; |
630 | 630 |
631 std::vector<WindowAndBoundsPair> to_restore_; | 631 std::vector<WindowAndBoundsPair> to_restore_; |
632 | 632 |
633 scoped_ptr<UserMetricsRecorder> user_metrics_recorder_; | 633 scoped_ptr<UserMetricsRecorder> user_metrics_recorder_; |
634 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_; | 634 scoped_ptr< ::wm::NestedAcceleratorController> nested_accelerator_controller_; |
635 scoped_ptr<AcceleratorController> accelerator_controller_; | 635 scoped_ptr<AcceleratorController> accelerator_controller_; |
636 scoped_ptr<ShellDelegate> delegate_; | 636 scoped_ptr<ShellDelegate> delegate_; |
637 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; | 637 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; |
638 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; | 638 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; |
639 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 639 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
640 scoped_ptr<SessionStateDelegate> session_state_delegate_; | 640 scoped_ptr<SessionStateDelegate> session_state_delegate_; |
641 scoped_ptr<AccessibilityDelegate> accessibility_delegate_; | 641 scoped_ptr<AccessibilityDelegate> accessibility_delegate_; |
642 scoped_ptr<NewWindowDelegate> new_window_delegate_; | 642 scoped_ptr<NewWindowDelegate> new_window_delegate_; |
643 scoped_ptr<MediaDelegate> media_delegate_; | 643 scoped_ptr<MediaDelegate> media_delegate_; |
644 scoped_ptr<ShelfDelegate> shelf_delegate_; | 644 scoped_ptr<ShelfDelegate> shelf_delegate_; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 | 760 |
761 // Injected content::GPUDataManager support. | 761 // Injected content::GPUDataManager support. |
762 scoped_ptr<GPUSupport> gpu_support_; | 762 scoped_ptr<GPUSupport> gpu_support_; |
763 | 763 |
764 DISALLOW_COPY_AND_ASSIGN(Shell); | 764 DISALLOW_COPY_AND_ASSIGN(Shell); |
765 }; | 765 }; |
766 | 766 |
767 } // namespace ash | 767 } // namespace ash |
768 | 768 |
769 #endif // ASH_SHELL_H_ | 769 #endif // ASH_SHELL_H_ |
OLD | NEW |