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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
60 namespace ash { | 60 namespace ash { |
61 | 61 |
62 class AcceleratorController; | 62 class AcceleratorController; |
63 class CapsLockDelegate; | 63 class CapsLockDelegate; |
64 class DesktopBackgroundController; | 64 class DesktopBackgroundController; |
65 class DisplayController; | 65 class DisplayController; |
66 class HighContrastController; | 66 class HighContrastController; |
67 class Launcher; | 67 class Launcher; |
68 class NestedDispatcherController; | 68 class NestedDispatcherController; |
69 class PowerButtonController; | 69 class PowerButtonController; |
70 class SessionStateController; | |
Daniel Erat
2012/10/11 15:08:30
nit: fix alphabetization
Denis Kuznetsov (DE-MUC)
2012/10/11 16:14:38
Done.
| |
70 class ScreenAsh; | 71 class ScreenAsh; |
71 class ShellDelegate; | 72 class ShellDelegate; |
72 class ShellObserver; | 73 class ShellObserver; |
73 class SystemTrayDelegate; | 74 class SystemTrayDelegate; |
74 class SystemTray; | 75 class SystemTray; |
75 class UserActivityDetector; | 76 class UserActivityDetector; |
76 class UserWallpaperDelegate; | 77 class UserWallpaperDelegate; |
77 class VideoDetector; | 78 class VideoDetector; |
78 class WindowCycleController; | 79 class WindowCycleController; |
79 | 80 |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
262 } | 263 } |
263 internal::OverlayEventFilter* overlay_filter() { | 264 internal::OverlayEventFilter* overlay_filter() { |
264 return overlay_filter_.get(); | 265 return overlay_filter_.get(); |
265 } | 266 } |
266 DesktopBackgroundController* desktop_background_controller() { | 267 DesktopBackgroundController* desktop_background_controller() { |
267 return desktop_background_controller_.get(); | 268 return desktop_background_controller_.get(); |
268 } | 269 } |
269 PowerButtonController* power_button_controller() { | 270 PowerButtonController* power_button_controller() { |
270 return power_button_controller_.get(); | 271 return power_button_controller_.get(); |
271 } | 272 } |
273 SessionStateController* session_state_controller() { | |
274 return session_state_controller_.get(); | |
275 } | |
272 UserActivityDetector* user_activity_detector() { | 276 UserActivityDetector* user_activity_detector() { |
273 return user_activity_detector_.get(); | 277 return user_activity_detector_.get(); |
274 } | 278 } |
275 VideoDetector* video_detector() { | 279 VideoDetector* video_detector() { |
276 return video_detector_.get(); | 280 return video_detector_.get(); |
277 } | 281 } |
278 WindowCycleController* window_cycle_controller() { | 282 WindowCycleController* window_cycle_controller() { |
279 return window_cycle_controller_.get(); | 283 return window_cycle_controller_.get(); |
280 } | 284 } |
281 internal::FocusCycler* focus_cycler() { | 285 internal::FocusCycler* focus_cycler() { |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
441 scoped_ptr<internal::ActivationController> activation_controller_; | 445 scoped_ptr<internal::ActivationController> activation_controller_; |
442 scoped_ptr<internal::CaptureController> capture_controller_; | 446 scoped_ptr<internal::CaptureController> capture_controller_; |
443 scoped_ptr<internal::WindowModalityController> window_modality_controller_; | 447 scoped_ptr<internal::WindowModalityController> window_modality_controller_; |
444 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 448 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
445 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 449 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
446 scoped_ptr<internal::ShadowController> shadow_controller_; | 450 scoped_ptr<internal::ShadowController> shadow_controller_; |
447 scoped_ptr<internal::TooltipController> tooltip_controller_; | 451 scoped_ptr<internal::TooltipController> tooltip_controller_; |
448 scoped_ptr<internal::VisibilityController> visibility_controller_; | 452 scoped_ptr<internal::VisibilityController> visibility_controller_; |
449 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; | 453 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; |
450 scoped_ptr<PowerButtonController> power_button_controller_; | 454 scoped_ptr<PowerButtonController> power_button_controller_; |
455 scoped_ptr<SessionStateController> session_state_controller_; | |
451 scoped_ptr<UserActivityDetector> user_activity_detector_; | 456 scoped_ptr<UserActivityDetector> user_activity_detector_; |
452 scoped_ptr<VideoDetector> video_detector_; | 457 scoped_ptr<VideoDetector> video_detector_; |
453 scoped_ptr<WindowCycleController> window_cycle_controller_; | 458 scoped_ptr<WindowCycleController> window_cycle_controller_; |
454 scoped_ptr<internal::FocusCycler> focus_cycler_; | 459 scoped_ptr<internal::FocusCycler> focus_cycler_; |
455 scoped_ptr<DisplayController> display_controller_; | 460 scoped_ptr<DisplayController> display_controller_; |
456 scoped_ptr<HighContrastController> high_contrast_controller_; | 461 scoped_ptr<HighContrastController> high_contrast_controller_; |
457 scoped_ptr<internal::MagnificationController> magnification_controller_; | 462 scoped_ptr<internal::MagnificationController> magnification_controller_; |
458 scoped_ptr<aura::FocusManager> focus_manager_; | 463 scoped_ptr<aura::FocusManager> focus_manager_; |
459 scoped_ptr<aura::client::UserActionClient> user_action_client_; | 464 scoped_ptr<aura::client::UserActionClient> user_action_client_; |
460 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; | 465 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
508 | 513 |
509 // Used by ash/shell. | 514 // Used by ash/shell. |
510 content::BrowserContext* browser_context_; | 515 content::BrowserContext* browser_context_; |
511 | 516 |
512 DISALLOW_COPY_AND_ASSIGN(Shell); | 517 DISALLOW_COPY_AND_ASSIGN(Shell); |
513 }; | 518 }; |
514 | 519 |
515 } // namespace ash | 520 } // namespace ash |
516 | 521 |
517 #endif // ASH_SHELL_H_ | 522 #endif // ASH_SHELL_H_ |
OLD | NEW |