| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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; |
| 121 class LocaleNotificationController; | 121 class LocaleNotificationController; |
| 122 class MouseCursorEventFilter; | 122 class MouseCursorEventFilter; |
| 123 class OutputConfiguratorAnimation; | 123 class OutputConfiguratorAnimation; |
| 124 class OverlayEventFilter; | 124 class OverlayEventFilter; |
| 125 class PowerEventObserver; |
| 125 class ResizeShadowController; | 126 class ResizeShadowController; |
| 126 class ResolutionNotificationController; | 127 class ResolutionNotificationController; |
| 127 class RootWindowController; | 128 class RootWindowController; |
| 128 class ScopedTargetRootWindow; | 129 class ScopedTargetRootWindow; |
| 129 class ScreenPositionController; | 130 class ScreenPositionController; |
| 130 class SlowAnimationEventFilter; | 131 class SlowAnimationEventFilter; |
| 131 class StatusAreaWidget; | 132 class StatusAreaWidget; |
| 132 class SuspendObserver; | |
| 133 class SystemGestureEventFilter; | 133 class SystemGestureEventFilter; |
| 134 class SystemModalContainerEventFilter; | 134 class SystemModalContainerEventFilter; |
| 135 class TouchObserverHUD; | 135 class TouchObserverHUD; |
| 136 class UserActivityNotifier; | 136 class UserActivityNotifier; |
| 137 class VideoActivityNotifier; | 137 class VideoActivityNotifier; |
| 138 } | 138 } |
| 139 | 139 |
| 140 namespace shell { | 140 namespace shell { |
| 141 class WindowWatcher; | 141 class WindowWatcher; |
| 142 } | 142 } |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 619 |
| 620 // An event filter that pre-handles all key events to send them to an IME. | 620 // An event filter that pre-handles all key events to send them to an IME. |
| 621 scoped_ptr<views::corewm::InputMethodEventFilter> input_method_filter_; | 621 scoped_ptr<views::corewm::InputMethodEventFilter> input_method_filter_; |
| 622 | 622 |
| 623 scoped_ptr<internal::DisplayManager> display_manager_; | 623 scoped_ptr<internal::DisplayManager> display_manager_; |
| 624 | 624 |
| 625 scoped_ptr<internal::LocaleNotificationController> | 625 scoped_ptr<internal::LocaleNotificationController> |
| 626 locale_notification_controller_; | 626 locale_notification_controller_; |
| 627 | 627 |
| 628 #if defined(OS_CHROMEOS) | 628 #if defined(OS_CHROMEOS) |
| 629 scoped_ptr<internal::SuspendObserver> suspend_observer_; | 629 scoped_ptr<internal::PowerEventObserver> power_event_observer_; |
| 630 scoped_ptr<internal::UserActivityNotifier> user_activity_notifier_; | 630 scoped_ptr<internal::UserActivityNotifier> user_activity_notifier_; |
| 631 scoped_ptr<internal::VideoActivityNotifier> video_activity_notifier_; | 631 scoped_ptr<internal::VideoActivityNotifier> video_activity_notifier_; |
| 632 #if defined(USE_X11) | 632 #if defined(USE_X11) |
| 633 // Controls video output device state. | 633 // Controls video output device state. |
| 634 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; | 634 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; |
| 635 scoped_ptr<internal::OutputConfiguratorAnimation> | 635 scoped_ptr<internal::OutputConfiguratorAnimation> |
| 636 output_configurator_animation_; | 636 output_configurator_animation_; |
| 637 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; | 637 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; |
| 638 | 638 |
| 639 // Listens for output changes and updates the display manager. | 639 // Listens for output changes and updates the display manager. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 658 bool simulate_modal_window_open_for_testing_; | 658 bool simulate_modal_window_open_for_testing_; |
| 659 | 659 |
| 660 bool is_touch_hud_projection_enabled_; | 660 bool is_touch_hud_projection_enabled_; |
| 661 | 661 |
| 662 DISALLOW_COPY_AND_ASSIGN(Shell); | 662 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 663 }; | 663 }; |
| 664 | 664 |
| 665 } // namespace ash | 665 } // namespace ash |
| 666 | 666 |
| 667 #endif // ASH_SHELL_H_ | 667 #endif // ASH_SHELL_H_ |
| OLD | NEW |