| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 class ImageSkia; | 45 class ImageSkia; |
| 46 class Point; | 46 class Point; |
| 47 class Rect; | 47 class Rect; |
| 48 } | 48 } |
| 49 | 49 |
| 50 namespace keyboard { | 50 namespace keyboard { |
| 51 class KeyboardController; | 51 class KeyboardController; |
| 52 } | 52 } |
| 53 | 53 |
| 54 namespace ui { | 54 namespace ui { |
| 55 class DisplayConfigurator; |
| 55 class Layer; | 56 class Layer; |
| 56 class OutputConfigurator; | |
| 57 } | 57 } |
| 58 namespace views { | 58 namespace views { |
| 59 class NonClientFrameView; | 59 class NonClientFrameView; |
| 60 class Widget; | 60 class Widget; |
| 61 namespace corewm { | 61 namespace corewm { |
| 62 class TooltipController; | 62 class TooltipController; |
| 63 } | 63 } |
| 64 } | 64 } |
| 65 | 65 |
| 66 namespace wm { | 66 namespace wm { |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 AccelerometerController* accelerometer_controller() { | 496 AccelerometerController* accelerometer_controller() { |
| 497 return accelerometer_controller_.get(); | 497 return accelerometer_controller_.get(); |
| 498 } | 498 } |
| 499 | 499 |
| 500 MaximizeModeController* maximize_mode_controller() { | 500 MaximizeModeController* maximize_mode_controller() { |
| 501 return maximize_mode_controller_.get(); | 501 return maximize_mode_controller_.get(); |
| 502 } | 502 } |
| 503 | 503 |
| 504 #if defined(OS_CHROMEOS) | 504 #if defined(OS_CHROMEOS) |
| 505 // TODO(oshima): Move these objects to DisplayController. | 505 // TODO(oshima): Move these objects to DisplayController. |
| 506 ui::OutputConfigurator* output_configurator() { | 506 ui::DisplayConfigurator* display_configurator() { |
| 507 return output_configurator_.get(); | 507 return display_configurator_.get(); |
| 508 } | 508 } |
| 509 OutputConfiguratorAnimation* output_configurator_animation() { | 509 OutputConfiguratorAnimation* output_configurator_animation() { |
| 510 return output_configurator_animation_.get(); | 510 return output_configurator_animation_.get(); |
| 511 } | 511 } |
| 512 DisplayErrorObserver* display_error_observer() { | 512 DisplayErrorObserver* display_error_observer() { |
| 513 return display_error_observer_.get(); | 513 return display_error_observer_.get(); |
| 514 } | 514 } |
| 515 | 515 |
| 516 ResolutionNotificationController* resolution_notification_controller() { | 516 ResolutionNotificationController* resolution_notification_controller() { |
| 517 return resolution_notification_controller_.get(); | 517 return resolution_notification_controller_.get(); |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 scoped_ptr<VideoActivityNotifier> video_activity_notifier_; | 703 scoped_ptr<VideoActivityNotifier> video_activity_notifier_; |
| 704 scoped_ptr<StickyKeysController> sticky_keys_controller_; | 704 scoped_ptr<StickyKeysController> sticky_keys_controller_; |
| 705 scoped_ptr<ResolutionNotificationController> | 705 scoped_ptr<ResolutionNotificationController> |
| 706 resolution_notification_controller_; | 706 resolution_notification_controller_; |
| 707 scoped_ptr<BluetoothNotificationController> | 707 scoped_ptr<BluetoothNotificationController> |
| 708 bluetooth_notification_controller_; | 708 bluetooth_notification_controller_; |
| 709 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_; | 709 scoped_ptr<LogoutConfirmationController> logout_confirmation_controller_; |
| 710 scoped_ptr<LastWindowClosedLogoutReminder> | 710 scoped_ptr<LastWindowClosedLogoutReminder> |
| 711 last_window_closed_logout_reminder_; | 711 last_window_closed_logout_reminder_; |
| 712 // Controls video output device state. | 712 // Controls video output device state. |
| 713 scoped_ptr<ui::OutputConfigurator> output_configurator_; | 713 scoped_ptr<ui::DisplayConfigurator> display_configurator_; |
| 714 scoped_ptr<OutputConfiguratorAnimation> output_configurator_animation_; | 714 scoped_ptr<OutputConfiguratorAnimation> output_configurator_animation_; |
| 715 scoped_ptr<DisplayErrorObserver> display_error_observer_; | 715 scoped_ptr<DisplayErrorObserver> display_error_observer_; |
| 716 scoped_ptr<ProjectingObserver> projecting_observer_; | 716 scoped_ptr<ProjectingObserver> projecting_observer_; |
| 717 | 717 |
| 718 // Listens for output changes and updates the display manager. | 718 // Listens for output changes and updates the display manager. |
| 719 scoped_ptr<DisplayChangeObserver> display_change_observer_; | 719 scoped_ptr<DisplayChangeObserver> display_change_observer_; |
| 720 | 720 |
| 721 #if defined(USE_X11) | 721 #if defined(USE_X11) |
| 722 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; | 722 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; |
| 723 scoped_ptr<ui::EventHandler> speech_feedback_handler_; | 723 scoped_ptr<ui::EventHandler> speech_feedback_handler_; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 740 | 740 |
| 741 // Injected content::GPUDataManager support. | 741 // Injected content::GPUDataManager support. |
| 742 scoped_ptr<GPUSupport> gpu_support_; | 742 scoped_ptr<GPUSupport> gpu_support_; |
| 743 | 743 |
| 744 DISALLOW_COPY_AND_ASSIGN(Shell); | 744 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 745 }; | 745 }; |
| 746 | 746 |
| 747 } // namespace ash | 747 } // namespace ash |
| 748 | 748 |
| 749 #endif // ASH_SHELL_H_ | 749 #endif // ASH_SHELL_H_ |
| OLD | NEW |