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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 class AcceleratorController; | 77 class AcceleratorController; |
78 class AccessibilityDelegate; | 78 class AccessibilityDelegate; |
79 class AppListController; | 79 class AppListController; |
80 class AshNativeCursorManager; | 80 class AshNativeCursorManager; |
81 class AutoclickController; | 81 class AutoclickController; |
82 class BluetoothNotificationController; | 82 class BluetoothNotificationController; |
83 class CaptureController; | 83 class CaptureController; |
84 class DesktopBackgroundController; | 84 class DesktopBackgroundController; |
85 class DisplayChangeObserver; | 85 class DisplayChangeObserver; |
86 class DisplayColorManager; | |
87 class DisplayConfiguratorAnimation; | 86 class DisplayConfiguratorAnimation; |
88 class DisplayController; | 87 class DisplayController; |
89 class DisplayErrorObserver; | 88 class DisplayErrorObserver; |
90 class DisplayManager; | 89 class DisplayManager; |
91 class DragDropController; | 90 class DragDropController; |
92 class EventClientImpl; | 91 class EventClientImpl; |
93 class EventRewriterEventFilter; | 92 class EventRewriterEventFilter; |
94 class EventTransformationHandler; | 93 class EventTransformationHandler; |
95 class FirstRunHelper; | 94 class FirstRunHelper; |
96 class FocusCycler; | 95 class FocusCycler; |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 scoped_ptr<ResolutionNotificationController> | 718 scoped_ptr<ResolutionNotificationController> |
720 resolution_notification_controller_; | 719 resolution_notification_controller_; |
721 scoped_ptr<BluetoothNotificationController> | 720 scoped_ptr<BluetoothNotificationController> |
722 bluetooth_notification_controller_; | 721 bluetooth_notification_controller_; |
723 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_; | 722 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_; |
724 scoped_ptr<LastWindowClosedLogoutReminder> | 723 scoped_ptr<LastWindowClosedLogoutReminder> |
725 last_window_closed_logout_reminder_; | 724 last_window_closed_logout_reminder_; |
726 scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_; | 725 scoped_ptr<VirtualKeyboardController> virtual_keyboard_controller_; |
727 // Controls video output device state. | 726 // Controls video output device state. |
728 scoped_ptr<ui::DisplayConfigurator> display_configurator_; | 727 scoped_ptr<ui::DisplayConfigurator> display_configurator_; |
729 scoped_ptr<DisplayColorManager> display_color_manager_; | |
730 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_; | 728 scoped_ptr<DisplayConfiguratorAnimation> display_configurator_animation_; |
731 scoped_ptr<DisplayErrorObserver> display_error_observer_; | 729 scoped_ptr<DisplayErrorObserver> display_error_observer_; |
732 scoped_ptr<ProjectingObserver> projecting_observer_; | 730 scoped_ptr<ProjectingObserver> projecting_observer_; |
733 | 731 |
734 // Listens for output changes and updates the display manager. | 732 // Listens for output changes and updates the display manager. |
735 scoped_ptr<DisplayChangeObserver> display_change_observer_; | 733 scoped_ptr<DisplayChangeObserver> display_change_observer_; |
736 | 734 |
737 // Implements content::ScreenOrientationController for ChromeOS | 735 // Implements content::ScreenOrientationController for ChromeOS |
738 scoped_ptr<ScreenOrientationController> screen_orientation_controller_; | 736 scoped_ptr<ScreenOrientationController> screen_orientation_controller_; |
739 | 737 |
(...skipping 26 matching lines...) Expand all Loading... |
766 | 764 |
767 // Injected content::GPUDataManager support. | 765 // Injected content::GPUDataManager support. |
768 scoped_ptr<GPUSupport> gpu_support_; | 766 scoped_ptr<GPUSupport> gpu_support_; |
769 | 767 |
770 DISALLOW_COPY_AND_ASSIGN(Shell); | 768 DISALLOW_COPY_AND_ASSIGN(Shell); |
771 }; | 769 }; |
772 | 770 |
773 } // namespace ash | 771 } // namespace ash |
774 | 772 |
775 #endif // ASH_SHELL_H_ | 773 #endif // ASH_SHELL_H_ |
OLD | NEW |