| 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; | |
| 79 class LauncherItemDelegateManager; | 78 class LauncherItemDelegateManager; |
| 80 class LauncherModel; | 79 class LauncherModel; |
| 81 class MagnificationController; | 80 class MagnificationController; |
| 82 class MruWindowTracker; | 81 class MruWindowTracker; |
| 83 class NestedDispatcherController; | 82 class NestedDispatcherController; |
| 84 class PartialMagnificationController; | 83 class PartialMagnificationController; |
| 85 class PowerButtonController; | 84 class PowerButtonController; |
| 86 class RootWindowHostFactory; | 85 class RootWindowHostFactory; |
| 87 class ScreenAsh; | 86 class ScreenAsh; |
| 88 class LockStateController; | 87 class LockStateController; |
| 89 class SessionStateDelegate; | 88 class SessionStateDelegate; |
| 90 class ShellDelegate; | 89 class ShellDelegate; |
| 91 class ShellObserver; | 90 class ShellObserver; |
| 92 class SystemTray; | 91 class SystemTray; |
| 93 class SystemTrayDelegate; | 92 class SystemTrayDelegate; |
| 94 class SystemTrayNotifier; | 93 class SystemTrayNotifier; |
| 95 class UserActivityDetector; | 94 class UserActivityDetector; |
| 96 class UserWallpaperDelegate; | 95 class UserWallpaperDelegate; |
| 97 class VideoDetector; | 96 class VideoDetector; |
| 98 class WebNotificationTray; | 97 class WebNotificationTray; |
| 99 class WindowCycleController; | 98 class WindowCycleController; |
| 100 class WindowSelectorController; | 99 class WindowSelectorController; |
| 101 | 100 |
| 102 namespace internal { | 101 namespace internal { |
| 103 class AcceleratorFilter; | 102 class AcceleratorFilter; |
| 104 class AppListController; | 103 class AppListController; |
| 104 class AppListShelfItemDelegate; |
| 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 KeyboardUMAEventFilter; | 114 class KeyboardUMAEventFilter; |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_; | 534 scoped_ptr<NestedDispatcherController> nested_dispatcher_controller_; |
| 535 scoped_ptr<AcceleratorController> accelerator_controller_; | 535 scoped_ptr<AcceleratorController> accelerator_controller_; |
| 536 scoped_ptr<ShellDelegate> delegate_; | 536 scoped_ptr<ShellDelegate> delegate_; |
| 537 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; | 537 scoped_ptr<SystemTrayDelegate> system_tray_delegate_; |
| 538 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; | 538 scoped_ptr<SystemTrayNotifier> system_tray_notifier_; |
| 539 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 539 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
| 540 scoped_ptr<CapsLockDelegate> caps_lock_delegate_; | 540 scoped_ptr<CapsLockDelegate> caps_lock_delegate_; |
| 541 scoped_ptr<SessionStateDelegate> session_state_delegate_; | 541 scoped_ptr<SessionStateDelegate> session_state_delegate_; |
| 542 scoped_ptr<LauncherDelegate> launcher_delegate_; | 542 scoped_ptr<LauncherDelegate> launcher_delegate_; |
| 543 scoped_ptr<LauncherItemDelegateManager> launcher_item_delegate_manager_; | 543 scoped_ptr<LauncherItemDelegateManager> launcher_item_delegate_manager_; |
| 544 scoped_ptr<internal::AppListShelfItemDelegate> |
| 545 app_list_shelf_item_delegate_; |
| 544 | 546 |
| 545 scoped_ptr<LauncherModel> launcher_model_; | 547 scoped_ptr<LauncherModel> launcher_model_; |
| 546 | 548 |
| 547 scoped_ptr<internal::AppListController> app_list_controller_; | 549 scoped_ptr<internal::AppListController> app_list_controller_; |
| 548 | 550 |
| 549 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 551 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
| 550 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 552 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
| 551 scoped_ptr<views::corewm::ShadowController> shadow_controller_; | 553 scoped_ptr<views::corewm::ShadowController> shadow_controller_; |
| 552 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; | 554 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; |
| 553 scoped_ptr<views::corewm::WindowModalityController> | 555 scoped_ptr<views::corewm::WindowModalityController> |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 bool simulate_modal_window_open_for_testing_; | 631 bool simulate_modal_window_open_for_testing_; |
| 630 | 632 |
| 631 bool is_touch_hud_projection_enabled_; | 633 bool is_touch_hud_projection_enabled_; |
| 632 | 634 |
| 633 DISALLOW_COPY_AND_ASSIGN(Shell); | 635 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 634 }; | 636 }; |
| 635 | 637 |
| 636 } // namespace ash | 638 } // namespace ash |
| 637 | 639 |
| 638 #endif // ASH_SHELL_H_ | 640 #endif // ASH_SHELL_H_ |
| OLD | NEW |