| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 } | 348 } |
| 349 MruWindowTracker* mru_window_tracker() { | 349 MruWindowTracker* mru_window_tracker() { |
| 350 return mru_window_tracker_.get(); | 350 return mru_window_tracker_.get(); |
| 351 } | 351 } |
| 352 UserActivityDetector* user_activity_detector() { | 352 UserActivityDetector* user_activity_detector() { |
| 353 return user_activity_detector_.get(); | 353 return user_activity_detector_.get(); |
| 354 } | 354 } |
| 355 VideoDetector* video_detector() { | 355 VideoDetector* video_detector() { |
| 356 return video_detector_.get(); | 356 return video_detector_.get(); |
| 357 } | 357 } |
| 358 WindowCycleController* window_cycle_controller() { | |
| 359 return window_cycle_controller_.get(); | |
| 360 } | |
| 361 WindowSelectorController* window_selector_controller() { | 358 WindowSelectorController* window_selector_controller() { |
| 362 return window_selector_controller_.get(); | 359 return window_selector_controller_.get(); |
| 363 } | 360 } |
| 364 internal::FocusCycler* focus_cycler() { | 361 internal::FocusCycler* focus_cycler() { |
| 365 return focus_cycler_.get(); | 362 return focus_cycler_.get(); |
| 366 } | 363 } |
| 367 DisplayController* display_controller() { | 364 DisplayController* display_controller() { |
| 368 return display_controller_.get(); | 365 return display_controller_.get(); |
| 369 } | 366 } |
| 370 internal::MouseCursorEventFilter* mouse_cursor_filter() { | 367 internal::MouseCursorEventFilter* mouse_cursor_filter() { |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; | 633 scoped_ptr<views::corewm::VisibilityController> visibility_controller_; |
| 637 scoped_ptr<views::corewm::WindowModalityController> | 634 scoped_ptr<views::corewm::WindowModalityController> |
| 638 window_modality_controller_; | 635 window_modality_controller_; |
| 639 scoped_ptr<views::corewm::TooltipController> tooltip_controller_; | 636 scoped_ptr<views::corewm::TooltipController> tooltip_controller_; |
| 640 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; | 637 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; |
| 641 scoped_ptr<PowerButtonController> power_button_controller_; | 638 scoped_ptr<PowerButtonController> power_button_controller_; |
| 642 scoped_ptr<LockStateController> lock_state_controller_; | 639 scoped_ptr<LockStateController> lock_state_controller_; |
| 643 scoped_ptr<MruWindowTracker> mru_window_tracker_; | 640 scoped_ptr<MruWindowTracker> mru_window_tracker_; |
| 644 scoped_ptr<UserActivityDetector> user_activity_detector_; | 641 scoped_ptr<UserActivityDetector> user_activity_detector_; |
| 645 scoped_ptr<VideoDetector> video_detector_; | 642 scoped_ptr<VideoDetector> video_detector_; |
| 646 scoped_ptr<WindowCycleController> window_cycle_controller_; | |
| 647 scoped_ptr<WindowSelectorController> window_selector_controller_; | 643 scoped_ptr<WindowSelectorController> window_selector_controller_; |
| 648 scoped_ptr<internal::FocusCycler> focus_cycler_; | 644 scoped_ptr<internal::FocusCycler> focus_cycler_; |
| 649 scoped_ptr<DisplayController> display_controller_; | 645 scoped_ptr<DisplayController> display_controller_; |
| 650 scoped_ptr<HighContrastController> high_contrast_controller_; | 646 scoped_ptr<HighContrastController> high_contrast_controller_; |
| 651 scoped_ptr<MagnificationController> magnification_controller_; | 647 scoped_ptr<MagnificationController> magnification_controller_; |
| 652 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; | 648 scoped_ptr<PartialMagnificationController> partial_magnification_controller_; |
| 653 scoped_ptr<AutoclickController> autoclick_controller_; | 649 scoped_ptr<AutoclickController> autoclick_controller_; |
| 654 scoped_ptr<aura::client::FocusClient> focus_client_; | 650 scoped_ptr<aura::client::FocusClient> focus_client_; |
| 655 scoped_ptr<aura::client::UserActionClient> user_action_client_; | 651 scoped_ptr<aura::client::UserActionClient> user_action_client_; |
| 656 aura::client::ActivationClient* activation_client_; | 652 aura::client::ActivationClient* activation_client_; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 | 724 |
| 729 // Injected content::GPUDataManager support. | 725 // Injected content::GPUDataManager support. |
| 730 scoped_ptr<GPUSupport> gpu_support_; | 726 scoped_ptr<GPUSupport> gpu_support_; |
| 731 | 727 |
| 732 DISALLOW_COPY_AND_ASSIGN(Shell); | 728 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 733 }; | 729 }; |
| 734 | 730 |
| 735 } // namespace ash | 731 } // namespace ash |
| 736 | 732 |
| 737 #endif // ASH_SHELL_H_ | 733 #endif // ASH_SHELL_H_ |
| OLD | NEW |