| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 class DesktopBackgroundController; | 62 class DesktopBackgroundController; |
| 63 class HighContrastController; | 63 class HighContrastController; |
| 64 class Launcher; | 64 class Launcher; |
| 65 class NestedDispatcherController; | 65 class NestedDispatcherController; |
| 66 class PowerButtonController; | 66 class PowerButtonController; |
| 67 class ScreenAsh; | 67 class ScreenAsh; |
| 68 class ShellDelegate; | 68 class ShellDelegate; |
| 69 class ShellObserver; | 69 class ShellObserver; |
| 70 class SystemTrayDelegate; | 70 class SystemTrayDelegate; |
| 71 class SystemTray; | 71 class SystemTray; |
| 72 class UserActivityDetector; |
| 72 class UserWallpaperDelegate; | 73 class UserWallpaperDelegate; |
| 73 class VideoDetector; | 74 class VideoDetector; |
| 74 class WindowCycleController; | 75 class WindowCycleController; |
| 75 | 76 |
| 76 namespace internal { | 77 namespace internal { |
| 77 class AcceleratorFilter; | 78 class AcceleratorFilter; |
| 78 class ActivationController; | 79 class ActivationController; |
| 79 class AppListController; | 80 class AppListController; |
| 80 class DragDropController; | 81 class DragDropController; |
| 81 class EventClientImpl; | 82 class EventClientImpl; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 } | 241 } |
| 241 internal::PartialScreenshotEventFilter* partial_screenshot_filter() { | 242 internal::PartialScreenshotEventFilter* partial_screenshot_filter() { |
| 242 return partial_screenshot_filter_.get(); | 243 return partial_screenshot_filter_.get(); |
| 243 } | 244 } |
| 244 DesktopBackgroundController* desktop_background_controller() { | 245 DesktopBackgroundController* desktop_background_controller() { |
| 245 return desktop_background_controller_.get(); | 246 return desktop_background_controller_.get(); |
| 246 } | 247 } |
| 247 PowerButtonController* power_button_controller() { | 248 PowerButtonController* power_button_controller() { |
| 248 return power_button_controller_.get(); | 249 return power_button_controller_.get(); |
| 249 } | 250 } |
| 251 UserActivityDetector* user_activity_detector() { |
| 252 return user_activity_detector_.get(); |
| 253 } |
| 250 VideoDetector* video_detector() { | 254 VideoDetector* video_detector() { |
| 251 return video_detector_.get(); | 255 return video_detector_.get(); |
| 252 } | 256 } |
| 253 WindowCycleController* window_cycle_controller() { | 257 WindowCycleController* window_cycle_controller() { |
| 254 return window_cycle_controller_.get(); | 258 return window_cycle_controller_.get(); |
| 255 } | 259 } |
| 256 internal::FocusCycler* focus_cycler() { | 260 internal::FocusCycler* focus_cycler() { |
| 257 return focus_cycler_.get(); | 261 return focus_cycler_.get(); |
| 258 } | 262 } |
| 259 | 263 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 scoped_ptr<internal::ActivationController> activation_controller_; | 387 scoped_ptr<internal::ActivationController> activation_controller_; |
| 384 scoped_ptr<internal::WindowModalityController> window_modality_controller_; | 388 scoped_ptr<internal::WindowModalityController> window_modality_controller_; |
| 385 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 389 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
| 386 scoped_ptr<internal::WorkspaceController> workspace_controller_; | 390 scoped_ptr<internal::WorkspaceController> workspace_controller_; |
| 387 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 391 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
| 388 scoped_ptr<internal::ShadowController> shadow_controller_; | 392 scoped_ptr<internal::ShadowController> shadow_controller_; |
| 389 scoped_ptr<internal::TooltipController> tooltip_controller_; | 393 scoped_ptr<internal::TooltipController> tooltip_controller_; |
| 390 scoped_ptr<internal::VisibilityController> visibility_controller_; | 394 scoped_ptr<internal::VisibilityController> visibility_controller_; |
| 391 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; | 395 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; |
| 392 scoped_ptr<PowerButtonController> power_button_controller_; | 396 scoped_ptr<PowerButtonController> power_button_controller_; |
| 397 scoped_ptr<UserActivityDetector> user_activity_detector_; |
| 393 scoped_ptr<VideoDetector> video_detector_; | 398 scoped_ptr<VideoDetector> video_detector_; |
| 394 scoped_ptr<WindowCycleController> window_cycle_controller_; | 399 scoped_ptr<WindowCycleController> window_cycle_controller_; |
| 395 scoped_ptr<internal::FocusCycler> focus_cycler_; | 400 scoped_ptr<internal::FocusCycler> focus_cycler_; |
| 396 scoped_ptr<internal::EventClientImpl> event_client_; | 401 scoped_ptr<internal::EventClientImpl> event_client_; |
| 397 scoped_ptr<internal::MonitorController> monitor_controller_; | 402 scoped_ptr<internal::MonitorController> monitor_controller_; |
| 398 scoped_ptr<HighContrastController> high_contrast_controller_; | 403 scoped_ptr<HighContrastController> high_contrast_controller_; |
| 399 scoped_ptr<internal::MagnificationController> magnification_controller_; | 404 scoped_ptr<internal::MagnificationController> magnification_controller_; |
| 400 scoped_ptr<internal::ScreenDimmer> screen_dimmer_; | 405 scoped_ptr<internal::ScreenDimmer> screen_dimmer_; |
| 401 scoped_ptr<aura::FocusManager> focus_manager_; | 406 scoped_ptr<aura::FocusManager> focus_manager_; |
| 402 scoped_ptr<aura::client::UserActionClient> user_action_client_; | 407 scoped_ptr<aura::client::UserActionClient> user_action_client_; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 | 458 |
| 454 // Used by ash/shell. | 459 // Used by ash/shell. |
| 455 content::BrowserContext* browser_context_; | 460 content::BrowserContext* browser_context_; |
| 456 | 461 |
| 457 DISALLOW_COPY_AND_ASSIGN(Shell); | 462 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 458 }; | 463 }; |
| 459 | 464 |
| 460 } // namespace ash | 465 } // namespace ash |
| 461 | 466 |
| 462 #endif // ASH_SHELL_H_ | 467 #endif // ASH_SHELL_H_ |
| OLD | NEW |