| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 class SystemTrayDelegate; | 52 class SystemTrayDelegate; |
| 53 class SystemTray; | 53 class SystemTray; |
| 54 class VideoDetector; | 54 class VideoDetector; |
| 55 class WindowCycleController; | 55 class WindowCycleController; |
| 56 | 56 |
| 57 namespace internal { | 57 namespace internal { |
| 58 class ActivationController; | 58 class ActivationController; |
| 59 class AcceleratorFilter; | 59 class AcceleratorFilter; |
| 60 class AppList; | 60 class AppList; |
| 61 class DragDropController; | 61 class DragDropController; |
| 62 class EventClientImpl; |
| 62 class FocusCycler; | 63 class FocusCycler; |
| 63 class InputMethodEventFilter; | 64 class InputMethodEventFilter; |
| 64 class PartialScreenshotEventFilter; | 65 class PartialScreenshotEventFilter; |
| 65 class ResizeShadowController; | 66 class ResizeShadowController; |
| 66 class RootWindowEventFilter; | 67 class RootWindowEventFilter; |
| 67 class RootWindowLayoutManager; | 68 class RootWindowLayoutManager; |
| 68 class ShadowController; | 69 class ShadowController; |
| 69 class ShelfLayoutManager; | 70 class ShelfLayoutManager; |
| 70 class StackingController; | 71 class StackingController; |
| 71 class TooltipController; | 72 class TooltipController; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 scoped_ptr<internal::WorkspaceController> workspace_controller_; | 269 scoped_ptr<internal::WorkspaceController> workspace_controller_; |
| 269 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 270 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
| 270 scoped_ptr<internal::ShadowController> shadow_controller_; | 271 scoped_ptr<internal::ShadowController> shadow_controller_; |
| 271 scoped_ptr<internal::TooltipController> tooltip_controller_; | 272 scoped_ptr<internal::TooltipController> tooltip_controller_; |
| 272 scoped_ptr<internal::VisibilityController> visibility_controller_; | 273 scoped_ptr<internal::VisibilityController> visibility_controller_; |
| 273 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; | 274 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; |
| 274 scoped_ptr<PowerButtonController> power_button_controller_; | 275 scoped_ptr<PowerButtonController> power_button_controller_; |
| 275 scoped_ptr<VideoDetector> video_detector_; | 276 scoped_ptr<VideoDetector> video_detector_; |
| 276 scoped_ptr<WindowCycleController> window_cycle_controller_; | 277 scoped_ptr<WindowCycleController> window_cycle_controller_; |
| 277 scoped_ptr<internal::FocusCycler> focus_cycler_; | 278 scoped_ptr<internal::FocusCycler> focus_cycler_; |
| 279 scoped_ptr<internal::EventClientImpl> event_client_; |
| 278 | 280 |
| 279 // An event filter that pre-handles all key events to send them to an IME. | 281 // An event filter that pre-handles all key events to send them to an IME. |
| 280 scoped_ptr<internal::InputMethodEventFilter> input_method_filter_; | 282 scoped_ptr<internal::InputMethodEventFilter> input_method_filter_; |
| 281 | 283 |
| 282 // An event filter that pre-handles key events while the partial | 284 // An event filter that pre-handles key events while the partial |
| 283 // screenshot UI is active. | 285 // screenshot UI is active. |
| 284 scoped_ptr<internal::PartialScreenshotEventFilter> partial_screenshot_filter_; | 286 scoped_ptr<internal::PartialScreenshotEventFilter> partial_screenshot_filter_; |
| 285 | 287 |
| 286 #if !defined(OS_MACOSX) | 288 #if !defined(OS_MACOSX) |
| 287 // An event filter that pre-handles global accelerators. | 289 // An event filter that pre-handles global accelerators. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 304 // System tray with clock, Wi-Fi signal, etc. (a replacement in progress for | 306 // System tray with clock, Wi-Fi signal, etc. (a replacement in progress for |
| 305 // |status_widget_|). | 307 // |status_widget_|). |
| 306 scoped_ptr<SystemTray> tray_; | 308 scoped_ptr<SystemTray> tray_; |
| 307 | 309 |
| 308 DISALLOW_COPY_AND_ASSIGN(Shell); | 310 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 309 }; | 311 }; |
| 310 | 312 |
| 311 } // namespace ash | 313 } // namespace ash |
| 312 | 314 |
| 313 #endif // ASH_SHELL_H_ | 315 #endif // ASH_SHELL_H_ |
| OLD | NEW |