| 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 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 namespace aura { | 36 namespace aura { |
| 37 class EventFilter; | 37 class EventFilter; |
| 38 class RootWindow; | 38 class RootWindow; |
| 39 class Window; | 39 class Window; |
| 40 namespace client { | 40 namespace client { |
| 41 class ActivationClient; | 41 class ActivationClient; |
| 42 class FocusClient; | 42 class FocusClient; |
| 43 } | 43 } |
| 44 } | 44 } |
| 45 namespace chromeos { | |
| 46 class OutputConfigurator; | |
| 47 } | |
| 48 | 45 |
| 49 namespace gfx { | 46 namespace gfx { |
| 50 class ImageSkia; | 47 class ImageSkia; |
| 51 class Point; | 48 class Point; |
| 52 class Rect; | 49 class Rect; |
| 53 } | 50 } |
| 54 | 51 |
| 55 namespace keyboard { | 52 namespace keyboard { |
| 56 class KeyboardController; | 53 class KeyboardController; |
| 57 } | 54 } |
| 58 | 55 |
| 59 namespace ui { | 56 namespace ui { |
| 60 class Layer; | 57 class Layer; |
| 58 class OutputConfigurator; |
| 61 } | 59 } |
| 62 namespace views { | 60 namespace views { |
| 63 class NonClientFrameView; | 61 class NonClientFrameView; |
| 64 class Widget; | 62 class Widget; |
| 65 namespace corewm { | 63 namespace corewm { |
| 66 class CompoundEventFilter; | 64 class CompoundEventFilter; |
| 67 class InputMethodEventFilter; | 65 class InputMethodEventFilter; |
| 68 class ShadowController; | 66 class ShadowController; |
| 69 class TooltipController; | 67 class TooltipController; |
| 70 class VisibilityController; | 68 class VisibilityController; |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 views::corewm::ShadowController* shadow_controller() { | 487 views::corewm::ShadowController* shadow_controller() { |
| 490 return shadow_controller_.get(); | 488 return shadow_controller_.get(); |
| 491 } | 489 } |
| 492 | 490 |
| 493 // Starts the animation that occurs on first login. | 491 // Starts the animation that occurs on first login. |
| 494 void DoInitialWorkspaceAnimation(); | 492 void DoInitialWorkspaceAnimation(); |
| 495 | 493 |
| 496 #if defined(OS_CHROMEOS) | 494 #if defined(OS_CHROMEOS) |
| 497 #if defined(USE_X11) | 495 #if defined(USE_X11) |
| 498 // TODO(oshima): Move these objects to DisplayController. | 496 // TODO(oshima): Move these objects to DisplayController. |
| 499 chromeos::OutputConfigurator* output_configurator() { | 497 ui::OutputConfigurator* output_configurator() { |
| 500 return output_configurator_.get(); | 498 return output_configurator_.get(); |
| 501 } | 499 } |
| 502 internal::OutputConfiguratorAnimation* output_configurator_animation() { | 500 internal::OutputConfiguratorAnimation* output_configurator_animation() { |
| 503 return output_configurator_animation_.get(); | 501 return output_configurator_animation_.get(); |
| 504 } | 502 } |
| 505 internal::DisplayErrorObserver* display_error_observer() { | 503 internal::DisplayErrorObserver* display_error_observer() { |
| 506 return display_error_observer_.get(); | 504 return display_error_observer_.get(); |
| 507 } | 505 } |
| 508 #endif // defined(USE_X11) | 506 #endif // defined(USE_X11) |
| 509 | 507 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 scoped_ptr<internal::VideoActivityNotifier> video_activity_notifier_; | 697 scoped_ptr<internal::VideoActivityNotifier> video_activity_notifier_; |
| 700 scoped_ptr<StickyKeysController> sticky_keys_controller_; | 698 scoped_ptr<StickyKeysController> sticky_keys_controller_; |
| 701 scoped_ptr<internal::ResolutionNotificationController> | 699 scoped_ptr<internal::ResolutionNotificationController> |
| 702 resolution_notification_controller_; | 700 resolution_notification_controller_; |
| 703 scoped_ptr<internal::BluetoothNotificationController> | 701 scoped_ptr<internal::BluetoothNotificationController> |
| 704 bluetooth_notification_controller_; | 702 bluetooth_notification_controller_; |
| 705 scoped_ptr<internal::LogoutConfirmationController> | 703 scoped_ptr<internal::LogoutConfirmationController> |
| 706 logout_confirmation_controller_; | 704 logout_confirmation_controller_; |
| 707 #if defined(USE_X11) | 705 #if defined(USE_X11) |
| 708 // Controls video output device state. | 706 // Controls video output device state. |
| 709 scoped_ptr<chromeos::OutputConfigurator> output_configurator_; | 707 scoped_ptr<ui::OutputConfigurator> output_configurator_; |
| 710 scoped_ptr<internal::OutputConfiguratorAnimation> | 708 scoped_ptr<internal::OutputConfiguratorAnimation> |
| 711 output_configurator_animation_; | 709 output_configurator_animation_; |
| 712 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; | 710 scoped_ptr<internal::DisplayErrorObserver> display_error_observer_; |
| 713 scoped_ptr<internal::ProjectingObserver> projecting_observer_; | 711 scoped_ptr<internal::ProjectingObserver> projecting_observer_; |
| 714 | 712 |
| 715 // Listens for output changes and updates the display manager. | 713 // Listens for output changes and updates the display manager. |
| 716 scoped_ptr<internal::DisplayChangeObserver> display_change_observer_; | 714 scoped_ptr<internal::DisplayChangeObserver> display_change_observer_; |
| 717 | 715 |
| 718 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; | 716 scoped_ptr<ui::EventHandler> magnifier_key_scroll_handler_; |
| 719 scoped_ptr<ui::EventHandler> speech_feedback_handler_; | 717 scoped_ptr<ui::EventHandler> speech_feedback_handler_; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 734 | 732 |
| 735 // Injected content::GPUDataManager support. | 733 // Injected content::GPUDataManager support. |
| 736 scoped_ptr<GPUSupport> gpu_support_; | 734 scoped_ptr<GPUSupport> gpu_support_; |
| 737 | 735 |
| 738 DISALLOW_COPY_AND_ASSIGN(Shell); | 736 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 739 }; | 737 }; |
| 740 | 738 |
| 741 } // namespace ash | 739 } // namespace ash |
| 742 | 740 |
| 743 #endif // ASH_SHELL_H_ | 741 #endif // ASH_SHELL_H_ |
| OLD | NEW |