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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 namespace ash { | 68 namespace ash { |
69 | 69 |
70 class AcceleratorController; | 70 class AcceleratorController; |
71 class AshNativeCursorManager; | 71 class AshNativeCursorManager; |
72 class CapsLockDelegate; | 72 class CapsLockDelegate; |
73 class DesktopBackgroundController; | 73 class DesktopBackgroundController; |
74 class DisplayController; | 74 class DisplayController; |
75 class HighContrastController; | 75 class HighContrastController; |
76 class Launcher; | 76 class Launcher; |
77 class LauncherDelegate; | 77 class LauncherDelegate; |
| 78 class LauncherItemDelegate; |
78 class LauncherItemDelegateManager; | 79 class LauncherItemDelegateManager; |
79 class LauncherModel; | 80 class LauncherModel; |
80 class MagnificationController; | 81 class MagnificationController; |
81 class MruWindowTracker; | 82 class MruWindowTracker; |
82 class NestedDispatcherController; | 83 class NestedDispatcherController; |
83 class PartialMagnificationController; | 84 class PartialMagnificationController; |
84 class PowerButtonController; | 85 class PowerButtonController; |
85 class RootWindowHostFactory; | 86 class RootWindowHostFactory; |
86 class ScreenAsh; | 87 class ScreenAsh; |
87 class LockStateController; | 88 class LockStateController; |
88 class SessionStateDelegate; | 89 class SessionStateDelegate; |
89 class ShellDelegate; | 90 class ShellDelegate; |
90 class ShellObserver; | 91 class ShellObserver; |
91 class SystemTray; | 92 class SystemTray; |
92 class SystemTrayDelegate; | 93 class SystemTrayDelegate; |
93 class SystemTrayNotifier; | 94 class SystemTrayNotifier; |
94 class UserActivityDetector; | 95 class UserActivityDetector; |
95 class UserWallpaperDelegate; | 96 class UserWallpaperDelegate; |
96 class VideoDetector; | 97 class VideoDetector; |
97 class WebNotificationTray; | 98 class WebNotificationTray; |
98 class WindowCycleController; | 99 class WindowCycleController; |
99 class WindowSelectorController; | 100 class WindowSelectorController; |
100 | 101 |
101 namespace internal { | 102 namespace internal { |
102 class AcceleratorFilter; | 103 class AcceleratorFilter; |
103 class AppListController; | 104 class AppListController; |
104 class AppListLauncherItemDelegate; | |
105 class CaptureController; | 105 class CaptureController; |
106 class DisplayChangeObserver; | 106 class DisplayChangeObserver; |
107 class DisplayErrorObserver; | 107 class DisplayErrorObserver; |
108 class DisplayManager; | 108 class DisplayManager; |
109 class DragDropController; | 109 class DragDropController; |
110 class EventClientImpl; | 110 class EventClientImpl; |
111 class EventRewriterEventFilter; | 111 class EventRewriterEventFilter; |
112 class EventTransformationHandler; | 112 class EventTransformationHandler; |
113 class FocusCycler; | 113 class FocusCycler; |
114 class LocaleNotificationController; | 114 class LocaleNotificationController; |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 #endif // !defined(OS_MACOSX) | 540 #endif // !defined(OS_MACOSX) |
541 | 541 |
542 scoped_ptr<ShellDelegate> delegate_; | 542 scoped_ptr<ShellDelegate> delegate_; |
543 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; | 543 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; |
544 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; | 544 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; |
545 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 545 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
546 scoped_ptr<CapsLockDelegate> caps_lock_delegate_; | 546 scoped_ptr<CapsLockDelegate> caps_lock_delegate_; |
547 scoped_ptr<SessionStateDelegate> session_state_delegate_; | 547 scoped_ptr<SessionStateDelegate> session_state_delegate_; |
548 scoped_ptr<LauncherDelegate> launcher_delegate_; | 548 scoped_ptr<LauncherDelegate> launcher_delegate_; |
549 scoped_ptr<LauncherItemDelegateManager> launcher_item_delegate_manager_; | 549 scoped_ptr<LauncherItemDelegateManager> launcher_item_delegate_manager_; |
550 scoped_ptr<internal::AppListLauncherItemDelegate> | |
551 app_list_launcher_item_delegate_; | |
552 | 550 |
553 scoped_ptr<LauncherModel> launcher_model_; | 551 scoped_ptr<LauncherModel> launcher_model_; |
554 | 552 |
555 scoped_ptr<internal::AppListController> app_list_controller_; | 553 scoped_ptr<internal::AppListController> app_list_controller_; |
556 | 554 |
557 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 555 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
558 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 556 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
559 scoped_ptr<views::corewm::ShadowController> shadow_controller_; | 557 scoped_ptr<views::corewm::ShadowController> shadow_controller_; |
560 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; | 558 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; |
561 scoped_ptr<views::corewm::WindowModalityController> | 559 scoped_ptr<views::corewm::WindowModalityController> |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 bool simulate_modal_window_open_for_testing_; | 634 bool simulate_modal_window_open_for_testing_; |
637 | 635 |
638 bool is_touch_hud_projection_enabled_; | 636 bool is_touch_hud_projection_enabled_; |
639 | 637 |
640 DISALLOW_COPY_AND_ASSIGN(Shell); | 638 DISALLOW_COPY_AND_ASSIGN(Shell); |
641 }; | 639 }; |
642 | 640 |
643 } // namespace ash | 641 } // namespace ash |
644 | 642 |
645 #endif // ASH_SHELL_H_ | 643 #endif // ASH_SHELL_H_ |
OLD | NEW |