| 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 22 matching lines...) Expand all Loading... |
| 33 namespace app_list { | 33 namespace app_list { |
| 34 class AppListView; | 34 class AppListView; |
| 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 class UserActionClient; |
| 43 } | 44 } |
| 44 } | 45 } |
| 45 namespace chromeos { | 46 namespace chromeos { |
| 46 class OutputConfigurator; | 47 class OutputConfigurator; |
| 47 } | 48 } |
| 48 | 49 |
| 49 namespace gfx { | 50 namespace gfx { |
| 50 class ImageSkia; | 51 class ImageSkia; |
| 51 class Point; | 52 class Point; |
| 52 class Rect; | 53 class Rect; |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 scoped_ptr<VideoDetector> video_detector_; | 659 scoped_ptr<VideoDetector> video_detector_; |
| 659 scoped_ptr<WindowCycleController> window_cycle_controller_; | 660 scoped_ptr<WindowCycleController> window_cycle_controller_; |
| 660 scoped_ptr<WindowSelectorController> window_selector_controller_; | 661 scoped_ptr<WindowSelectorController> window_selector_controller_; |
| 661 scoped_ptr<internal::FocusCycler> focus_cycler_; | 662 scoped_ptr<internal::FocusCycler> focus_cycler_; |
| 662 scoped_ptr<DisplayController> display_controller_; | 663 scoped_ptr<DisplayController> display_controller_; |
| 663 scoped_ptr<HighContrastController> high_contrast_controller_; | 664 scoped_ptr<HighContrastController> high_contrast_controller_; |
| 664 scoped_ptr<MagnificationController> magnification_controller_; | 665 scoped_ptr<MagnificationController> magnification_controller_; |
| 665 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; | 666 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; |
| 666 scoped_ptr<AutoclickController> autoclick_controller_; | 667 scoped_ptr<AutoclickController> autoclick_controller_; |
| 667 scoped_ptr<aura::client::FocusClient> focus_client_; | 668 scoped_ptr<aura::client::FocusClient> focus_client_; |
| 669 scoped_ptr<aura::client::UserActionClient> user_action_client_; |
| 668 aura::client::ActivationClient* activation_client_; | 670 aura::client::ActivationClient* activation_client_; |
| 669 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; | 671 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; |
| 670 scoped_ptr<internal::ScreenPositionController> screen_position_controller_; | 672 scoped_ptr<internal::ScreenPositionController> screen_position_controller_; |
| 671 scoped_ptr<internal::SystemModalContainerEventFilter> modality_filter_; | 673 scoped_ptr<internal::SystemModalContainerEventFilter> modality_filter_; |
| 672 scoped_ptr<internal::EventClientImpl> event_client_; | 674 scoped_ptr<internal::EventClientImpl> event_client_; |
| 673 scoped_ptr<internal::EventTransformationHandler> | 675 scoped_ptr<internal::EventTransformationHandler> |
| 674 event_transformation_handler_; | 676 event_transformation_handler_; |
| 675 scoped_ptr<WindowTreeHostFactory> window_tree_host_factory_; | 677 scoped_ptr<WindowTreeHostFactory> window_tree_host_factory_; |
| 676 scoped_ptr<internal::LogoutConfirmationController> | 678 scoped_ptr<internal::LogoutConfirmationController> |
| 677 logout_confirmation_controller_; | 679 logout_confirmation_controller_; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 | 746 |
| 745 // Injected content::GPUDataManager support. | 747 // Injected content::GPUDataManager support. |
| 746 scoped_ptr<GPUSupport> gpu_support_; | 748 scoped_ptr<GPUSupport> gpu_support_; |
| 747 | 749 |
| 748 DISALLOW_COPY_AND_ASSIGN(Shell); | 750 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 749 }; | 751 }; |
| 750 | 752 |
| 751 } // namespace ash | 753 } // namespace ash |
| 752 | 754 |
| 753 #endif // ASH_SHELL_H_ | 755 #endif // ASH_SHELL_H_ |
| OLD | NEW |