| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 namespace ash { | 73 namespace ash { |
| 74 | 74 |
| 75 class AcceleratorController; | 75 class AcceleratorController; |
| 76 class AshNativeCursorManager; | 76 class AshNativeCursorManager; |
| 77 class CapsLockDelegate; | 77 class CapsLockDelegate; |
| 78 class DesktopBackgroundController; | 78 class DesktopBackgroundController; |
| 79 class DisplayController; | 79 class DisplayController; |
| 80 class HighContrastController; | 80 class HighContrastController; |
| 81 class Launcher; | 81 class Launcher; |
| 82 class LauncherDelegate; | 82 class LauncherDelegate; |
| 83 class LauncherItemDelegate; |
| 83 class LauncherItemDelegateManager; | 84 class LauncherItemDelegateManager; |
| 84 class LauncherModel; | 85 class LauncherModel; |
| 85 class MagnificationController; | 86 class MagnificationController; |
| 86 class MruWindowTracker; | 87 class MruWindowTracker; |
| 87 class NestedDispatcherController; | 88 class NestedDispatcherController; |
| 88 class PartialMagnificationController; | 89 class PartialMagnificationController; |
| 89 class PowerButtonController; | 90 class PowerButtonController; |
| 90 class RootWindowHostFactory; | 91 class RootWindowHostFactory; |
| 91 class ScreenAsh; | 92 class ScreenAsh; |
| 92 class LockStateController; | 93 class LockStateController; |
| 93 class SessionStateDelegate; | 94 class SessionStateDelegate; |
| 94 class ShellDelegate; | 95 class ShellDelegate; |
| 95 class ShellObserver; | 96 class ShellObserver; |
| 96 class SystemTray; | 97 class SystemTray; |
| 97 class SystemTrayDelegate; | 98 class SystemTrayDelegate; |
| 98 class SystemTrayNotifier; | 99 class SystemTrayNotifier; |
| 99 class UserActivityDetector; | 100 class UserActivityDetector; |
| 100 class UserWallpaperDelegate; | 101 class UserWallpaperDelegate; |
| 101 class VideoDetector; | 102 class VideoDetector; |
| 102 class WebNotificationTray; | 103 class WebNotificationTray; |
| 103 class WindowCycleController; | 104 class WindowCycleController; |
| 104 class WindowPositioner; | 105 class WindowPositioner; |
| 105 class WindowSelectorController; | 106 class WindowSelectorController; |
| 106 | 107 |
| 107 namespace internal { | 108 namespace internal { |
| 108 class AcceleratorFilter; | 109 class AcceleratorFilter; |
| 109 class AppListController; | 110 class AppListController; |
| 110 class AppListShelfItemDelegate; | |
| 111 class CaptureController; | 111 class CaptureController; |
| 112 class DisplayChangeObserver; | 112 class DisplayChangeObserver; |
| 113 class DisplayErrorObserver; | 113 class DisplayErrorObserver; |
| 114 class DisplayManager; | 114 class DisplayManager; |
| 115 class DragDropController; | 115 class DragDropController; |
| 116 class EventClientImpl; | 116 class EventClientImpl; |
| 117 class EventRewriterEventFilter; | 117 class EventRewriterEventFilter; |
| 118 class EventTransformationHandler; | 118 class EventTransformationHandler; |
| 119 class FocusCycler; | 119 class FocusCycler; |
| 120 class KeyboardUMAEventFilter; | 120 class KeyboardUMAEventFilter; |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_; | 556 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_; |
| 557 scoped_ptr<AcceleratorController> accelerator_controller_; | 557 scoped_ptr<AcceleratorController> accelerator_controller_; |
| 558 scoped_ptr<ShellDelegate> delegate_; | 558 scoped_ptr<ShellDelegate> delegate_; |
| 559 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; | 559 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; |
| 560 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; | 560 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; |
| 561 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 561 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
| 562 scoped_ptr<CapsLockDelegate> caps_lock_delegate_; | 562 scoped_ptr<CapsLockDelegate> caps_lock_delegate_; |
| 563 scoped_ptr<SessionStateDelegate> session_state_delegate_; | 563 scoped_ptr<SessionStateDelegate> session_state_delegate_; |
| 564 scoped_ptr<LauncherDelegate> launcher_delegate_; | 564 scoped_ptr<LauncherDelegate> launcher_delegate_; |
| 565 scoped_ptr<LauncherItemDelegateManager> launcher_item_delegate_manager_; | 565 scoped_ptr<LauncherItemDelegateManager> launcher_item_delegate_manager_; |
| 566 scoped_ptr<internal::AppListShelfItemDelegate> | |
| 567 app_list_shelf_item_delegate_; | |
| 568 | 566 |
| 569 scoped_ptr<LauncherModel> launcher_model_; | 567 scoped_ptr<LauncherModel> launcher_model_; |
| 570 scoped_ptr<ash::WindowPositioner> window_positioner_; | 568 scoped_ptr<ash::WindowPositioner> window_positioner_; |
| 571 | 569 |
| 572 scoped_ptr<internal::AppListController> app_list_controller_; | 570 scoped_ptr<internal::AppListController> app_list_controller_; |
| 573 | 571 |
| 574 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 572 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
| 575 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 573 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
| 576 scoped_ptr<views::corewm::ShadowController> shadow_controller_; | 574 scoped_ptr<views::corewm::ShadowController> shadow_controller_; |
| 577 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; | 575 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 bool simulate_modal_window_open_for_testing_; | 652 bool simulate_modal_window_open_for_testing_; |
| 655 | 653 |
| 656 bool is_touch_hud_projection_enabled_; | 654 bool is_touch_hud_projection_enabled_; |
| 657 | 655 |
| 658 DISALLOW_COPY_AND_ASSIGN(Shell); | 656 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 659 }; | 657 }; |
| 660 | 658 |
| 661 } // namespace ash | 659 } // namespace ash |
| 662 | 660 |
| 663 #endif // ASH_SHELL_H_ | 661 #endif // ASH_SHELL_H_ |
| OLD | NEW |