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; | |
68 class ShadowController; | 67 class ShadowController; |
69 class VisibilityController; | 68 class VisibilityController; |
70 class UserActivityDetector; | 69 class UserActivityDetector; |
71 class WindowModalityController; | 70 class WindowModalityController; |
72 } | 71 } |
73 | 72 |
74 namespace ash { | 73 namespace ash { |
75 | 74 |
76 class AcceleratorController; | 75 class AcceleratorController; |
77 class AccelerometerController; | 76 class AccelerometerController; |
(...skipping 22 matching lines...) Expand all Loading... |
100 class LastWindowClosedLogoutReminder; | 99 class LastWindowClosedLogoutReminder; |
101 class LocaleNotificationController; | 100 class LocaleNotificationController; |
102 class LockStateController; | 101 class LockStateController; |
103 class LogoutConfirmationController; | 102 class LogoutConfirmationController; |
104 class MagnificationController; | 103 class MagnificationController; |
105 class MaximizeModeController; | 104 class MaximizeModeController; |
106 class MaximizeModeWindowManager; | 105 class MaximizeModeWindowManager; |
107 class MediaDelegate; | 106 class MediaDelegate; |
108 class MouseCursorEventFilter; | 107 class MouseCursorEventFilter; |
109 class MruWindowTracker; | 108 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 // |target_root_window_| never becomes NULL during the session. | 616 // |target_root_window_| never becomes NULL during the session. |
617 aura::Window* target_root_window_; | 617 aura::Window* target_root_window_; |
618 aura::Window* scoped_target_root_window_; | 618 aura::Window* scoped_target_root_window_; |
619 | 619 |
620 // The CompoundEventFilter owned by aura::Env object. | 620 // The CompoundEventFilter owned by aura::Env object. |
621 scoped_ptr< ::wm::CompoundEventFilter> env_filter_; | 621 scoped_ptr< ::wm::CompoundEventFilter> env_filter_; |
622 | 622 |
623 std::vector<WindowAndBoundsPair> to_restore_; | 623 std::vector<WindowAndBoundsPair> to_restore_; |
624 | 624 |
625 scoped_ptr<UserMetricsRecorder> user_metrics_recorder_; | 625 scoped_ptr<UserMetricsRecorder> user_metrics_recorder_; |
626 scoped_ptr< ::wm::NestedAcceleratorController> nested_accelerator_controller_; | 626 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_; |
627 scoped_ptr<AcceleratorController> accelerator_controller_; | 627 scoped_ptr<AcceleratorController> accelerator_controller_; |
628 scoped_ptr<ShellDelegate> delegate_; | 628 scoped_ptr<ShellDelegate> delegate_; |
629 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; | 629 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; |
630 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; | 630 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; |
631 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 631 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
632 scoped_ptr<SessionStateDelegate> session_state_delegate_; | 632 scoped_ptr<SessionStateDelegate> session_state_delegate_; |
633 scoped_ptr<AccessibilityDelegate> accessibility_delegate_; | 633 scoped_ptr<AccessibilityDelegate> accessibility_delegate_; |
634 scoped_ptr<NewWindowDelegate> new_window_delegate_; | 634 scoped_ptr<NewWindowDelegate> new_window_delegate_; |
635 scoped_ptr<MediaDelegate> media_delegate_; | 635 scoped_ptr<MediaDelegate> media_delegate_; |
636 scoped_ptr<ShelfDelegate> shelf_delegate_; | 636 scoped_ptr<ShelfDelegate> shelf_delegate_; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 | 752 |
753 // Injected content::GPUDataManager support. | 753 // Injected content::GPUDataManager support. |
754 scoped_ptr<GPUSupport> gpu_support_; | 754 scoped_ptr<GPUSupport> gpu_support_; |
755 | 755 |
756 DISALLOW_COPY_AND_ASSIGN(Shell); | 756 DISALLOW_COPY_AND_ASSIGN(Shell); |
757 }; | 757 }; |
758 | 758 |
759 } // namespace ash | 759 } // namespace ash |
760 | 760 |
761 #endif // ASH_SHELL_H_ | 761 #endif // ASH_SHELL_H_ |
OLD | NEW |