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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 class PowerButtonController; | 118 class PowerButtonController; |
119 class PowerEventObserver; | 119 class PowerEventObserver; |
120 class ProjectingObserver; | 120 class ProjectingObserver; |
121 class ResizeShadowController; | 121 class ResizeShadowController; |
122 class ResolutionNotificationController; | 122 class ResolutionNotificationController; |
123 class RootWindowController; | 123 class RootWindowController; |
124 class ScopedTargetRootWindow; | 124 class ScopedTargetRootWindow; |
125 class ScreenAsh; | 125 class ScreenAsh; |
126 class ScreenOrientationController; | 126 class ScreenOrientationController; |
127 class ScreenPositionController; | 127 class ScreenPositionController; |
| 128 class SensorManagerDelegateChromeOS; |
128 class SessionStateDelegate; | 129 class SessionStateDelegate; |
129 class Shelf; | 130 class Shelf; |
130 class ShelfDelegate; | 131 class ShelfDelegate; |
131 class ShelfItemDelegateManager; | 132 class ShelfItemDelegateManager; |
132 class ShelfModel; | 133 class ShelfModel; |
133 class ShelfWindowWatcher; | 134 class ShelfWindowWatcher; |
134 class ShellDelegate; | 135 class ShellDelegate; |
135 struct ShellInitParams; | 136 struct ShellInitParams; |
136 class ShellObserver; | 137 class ShellObserver; |
137 class SlowAnimationEventFilter; | 138 class SlowAnimationEventFilter; |
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_; | 730 scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_; |
730 // Controls video output device state. | 731 // Controls video output device state. |
731 scoped_ptr<ui::DisplayConfigurator> display_configurator_; | 732 scoped_ptr<ui::DisplayConfigurator> display_configurator_; |
732 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_; | 733 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_; |
733 scoped_ptr<DisplayErrorObserver> display_error_observer_; | 734 scoped_ptr<DisplayErrorObserver> display_error_observer_; |
734 scoped_ptr<ProjectingObserver> projecting_observer_; | 735 scoped_ptr<ProjectingObserver> projecting_observer_; |
735 | 736 |
736 // Listens for output changes and updates the display manager. | 737 // Listens for output changes and updates the display manager. |
737 scoped_ptr<DisplayChangeObserver> display_change_observer_; | 738 scoped_ptr<DisplayChangeObserver> display_change_observer_; |
738 | 739 |
| 740 // Listens for accelerometer events to update the content shell. |
| 741 scoped_ptr<SensorManagerDelegateChromeOS> sensor_manager_delegate_; |
| 742 |
739 // Implements content::ScreenOrientationController for ChromeOS | 743 // Implements content::ScreenOrientationController for ChromeOS |
740 scoped_ptr<ScreenOrientationController> screen_orientation_controller_; | 744 scoped_ptr<ScreenOrientationController> screen_orientation_controller_; |
741 | 745 |
742 scoped_ptr<TouchTransformerController> touch_transformer_controller_; | 746 scoped_ptr<TouchTransformerController> touch_transformer_controller_; |
743 | 747 |
744 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; | 748 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; |
745 scoped_ptr<ui::EventHandler> speech_feedback_handler_; | 749 scoped_ptr<ui::EventHandler> speech_feedback_handler_; |
746 #endif // defined(OS_CHROMEOS) | 750 #endif // defined(OS_CHROMEOS) |
747 | 751 |
748 scoped_ptr<MaximizeModeController> maximize_mode_controller_; | 752 scoped_ptr<MaximizeModeController> maximize_mode_controller_; |
(...skipping 19 matching lines...) Expand all Loading... |
768 | 772 |
769 // Injected content::GPUDataManager support. | 773 // Injected content::GPUDataManager support. |
770 scoped_ptr<GPUSupport> gpu_support_; | 774 scoped_ptr<GPUSupport> gpu_support_; |
771 | 775 |
772 DISALLOW_COPY_AND_ASSIGN(Shell); | 776 DISALLOW_COPY_AND_ASSIGN(Shell); |
773 }; | 777 }; |
774 | 778 |
775 } // namespace ash | 779 } // namespace ash |
776 | 780 |
777 #endif // ASH_SHELL_H_ | 781 #endif // ASH_SHELL_H_ |
OLD | NEW |