| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 views::corewm::TooltipController* tooltip_controller() { | 353 views::corewm::TooltipController* tooltip_controller() { |
| 354 return tooltip_controller_.get(); | 354 return tooltip_controller_.get(); |
| 355 } | 355 } |
| 356 OverlayEventFilter* overlay_filter() { return overlay_filter_.get(); } | 356 OverlayEventFilter* overlay_filter() { return overlay_filter_.get(); } |
| 357 DesktopBackgroundController* desktop_background_controller() { | 357 DesktopBackgroundController* desktop_background_controller() { |
| 358 return desktop_background_controller_.get(); | 358 return desktop_background_controller_.get(); |
| 359 } | 359 } |
| 360 PowerButtonController* power_button_controller() { | 360 PowerButtonController* power_button_controller() { |
| 361 return power_button_controller_.get(); | 361 return power_button_controller_.get(); |
| 362 } | 362 } |
| 363 PowerEventObserver* power_event_observer() { |
| 364 return power_event_observer_.get(); |
| 365 } |
| 363 LockStateController* lock_state_controller() { | 366 LockStateController* lock_state_controller() { |
| 364 return lock_state_controller_.get(); | 367 return lock_state_controller_.get(); |
| 365 } | 368 } |
| 366 MruWindowTracker* mru_window_tracker() { | 369 MruWindowTracker* mru_window_tracker() { |
| 367 return mru_window_tracker_.get(); | 370 return mru_window_tracker_.get(); |
| 368 } | 371 } |
| 369 VideoDetector* video_detector() { | 372 VideoDetector* video_detector() { |
| 370 return video_detector_.get(); | 373 return video_detector_.get(); |
| 371 } | 374 } |
| 372 WindowCycleController* window_cycle_controller() { | 375 WindowCycleController* window_cycle_controller() { |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 | 759 |
| 757 // Injected content::GPUDataManager support. | 760 // Injected content::GPUDataManager support. |
| 758 scoped_ptr<GPUSupport> gpu_support_; | 761 scoped_ptr<GPUSupport> gpu_support_; |
| 759 | 762 |
| 760 DISALLOW_COPY_AND_ASSIGN(Shell); | 763 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 761 }; | 764 }; |
| 762 | 765 |
| 763 } // namespace ash | 766 } // namespace ash |
| 764 | 767 |
| 765 #endif // ASH_SHELL_H_ | 768 #endif // ASH_SHELL_H_ |
| OLD | NEW |