| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 namespace ui { | 50 namespace ui { |
| 51 class Layer; | 51 class Layer; |
| 52 } | 52 } |
| 53 namespace views { | 53 namespace views { |
| 54 class NonClientFrameView; | 54 class NonClientFrameView; |
| 55 class Widget; | 55 class Widget; |
| 56 namespace corewm { | 56 namespace corewm { |
| 57 class CompoundEventFilter; | 57 class CompoundEventFilter; |
| 58 class InputMethodEventFilter; | 58 class InputMethodEventFilter; |
| 59 class ShadowController; | 59 class ShadowController; |
| 60 class VisibilityController; |
| 60 } | 61 } |
| 61 } | 62 } |
| 62 | 63 |
| 63 namespace ash { | 64 namespace ash { |
| 64 | 65 |
| 65 class AcceleratorController; | 66 class AcceleratorController; |
| 66 class CapsLockDelegate; | 67 class CapsLockDelegate; |
| 67 class DesktopBackgroundController; | 68 class DesktopBackgroundController; |
| 68 class DisplayController; | 69 class DisplayController; |
| 69 class HighContrastController; | 70 class HighContrastController; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 class ResizeShadowController; | 103 class ResizeShadowController; |
| 103 class RootWindowController; | 104 class RootWindowController; |
| 104 class RootWindowLayoutManager; | 105 class RootWindowLayoutManager; |
| 105 class ScreenPositionController; | 106 class ScreenPositionController; |
| 106 class SlowAnimationEventFilter; | 107 class SlowAnimationEventFilter; |
| 107 class StatusAreaWidget; | 108 class StatusAreaWidget; |
| 108 class SystemGestureEventFilter; | 109 class SystemGestureEventFilter; |
| 109 class SystemModalContainerEventFilter; | 110 class SystemModalContainerEventFilter; |
| 110 class TooltipController; | 111 class TooltipController; |
| 111 class TouchObserverHUD; | 112 class TouchObserverHUD; |
| 112 class VisibilityController; | |
| 113 class WindowModalityController; | 113 class WindowModalityController; |
| 114 class WorkspaceController; | 114 class WorkspaceController; |
| 115 } | 115 } |
| 116 | 116 |
| 117 // Shell is a singleton object that presents the Shell API and implements the | 117 // Shell is a singleton object that presents the Shell API and implements the |
| 118 // RootWindow's delegate interface. | 118 // RootWindow's delegate interface. |
| 119 // | 119 // |
| 120 // Upon creation, the Shell sets itself as the RootWindow's delegate, which | 120 // Upon creation, the Shell sets itself as the RootWindow's delegate, which |
| 121 // takes ownership of the Shell. | 121 // takes ownership of the Shell. |
| 122 class ASH_EXPORT Shell : internal::SystemModalContainerEventFilterDelegate, | 122 class ASH_EXPORT Shell : internal::SystemModalContainerEventFilterDelegate, |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 | 485 |
| 486 scoped_ptr<internal::AppListController> app_list_controller_; | 486 scoped_ptr<internal::AppListController> app_list_controller_; |
| 487 | 487 |
| 488 scoped_ptr<aura::client::StackingClient> stacking_client_; | 488 scoped_ptr<aura::client::StackingClient> stacking_client_; |
| 489 scoped_ptr<internal::ActivationController> activation_controller_; | 489 scoped_ptr<internal::ActivationController> activation_controller_; |
| 490 scoped_ptr<internal::CaptureController> capture_controller_; | 490 scoped_ptr<internal::CaptureController> capture_controller_; |
| 491 scoped_ptr<internal::WindowModalityController> window_modality_controller_; | 491 scoped_ptr<internal::WindowModalityController> window_modality_controller_; |
| 492 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 492 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
| 493 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 493 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
| 494 scoped_ptr<views::corewm::ShadowController> shadow_controller_; | 494 scoped_ptr<views::corewm::ShadowController> shadow_controller_; |
| 495 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; |
| 495 scoped_ptr<internal::TooltipController> tooltip_controller_; | 496 scoped_ptr<internal::TooltipController> tooltip_controller_; |
| 496 scoped_ptr<internal::VisibilityController> visibility_controller_; | |
| 497 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; | 497 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; |
| 498 scoped_ptr<PowerButtonController> power_button_controller_; | 498 scoped_ptr<PowerButtonController> power_button_controller_; |
| 499 scoped_ptr<SessionStateController> session_state_controller_; | 499 scoped_ptr<SessionStateController> session_state_controller_; |
| 500 scoped_ptr<UserActivityDetector> user_activity_detector_; | 500 scoped_ptr<UserActivityDetector> user_activity_detector_; |
| 501 scoped_ptr<VideoDetector> video_detector_; | 501 scoped_ptr<VideoDetector> video_detector_; |
| 502 scoped_ptr<WindowCycleController> window_cycle_controller_; | 502 scoped_ptr<WindowCycleController> window_cycle_controller_; |
| 503 scoped_ptr<internal::FocusCycler> focus_cycler_; | 503 scoped_ptr<internal::FocusCycler> focus_cycler_; |
| 504 scoped_ptr<DisplayController> display_controller_; | 504 scoped_ptr<DisplayController> display_controller_; |
| 505 scoped_ptr<HighContrastController> high_contrast_controller_; | 505 scoped_ptr<HighContrastController> high_contrast_controller_; |
| 506 scoped_ptr<MagnificationController> magnification_controller_; | 506 scoped_ptr<MagnificationController> magnification_controller_; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 | 555 |
| 556 // For testing only: simulate that a modal window is open | 556 // For testing only: simulate that a modal window is open |
| 557 bool simulate_modal_window_open_for_testing_; | 557 bool simulate_modal_window_open_for_testing_; |
| 558 | 558 |
| 559 DISALLOW_COPY_AND_ASSIGN(Shell); | 559 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 560 }; | 560 }; |
| 561 | 561 |
| 562 } // namespace ash | 562 } // namespace ash |
| 563 | 563 |
| 564 #endif // ASH_SHELL_H_ | 564 #endif // ASH_SHELL_H_ |
| OLD | NEW |