| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 class FocusCycler; | 65 class FocusCycler; |
| 66 class InputMethodEventFilter; | 66 class InputMethodEventFilter; |
| 67 class KeyRewriterEventFilter; | 67 class KeyRewriterEventFilter; |
| 68 class MonitorController; | 68 class MonitorController; |
| 69 class PartialScreenshotEventFilter; | 69 class PartialScreenshotEventFilter; |
| 70 class ResizeShadowController; | 70 class ResizeShadowController; |
| 71 class RootWindowEventFilter; | 71 class RootWindowEventFilter; |
| 72 class RootWindowLayoutManager; | 72 class RootWindowLayoutManager; |
| 73 class ShadowController; | 73 class ShadowController; |
| 74 class ShelfLayoutManager; | 74 class ShelfLayoutManager; |
| 75 class ShellContextMenu; |
| 75 class SystemGestureEventFilter; | 76 class SystemGestureEventFilter; |
| 76 class StackingController; | 77 class StackingController; |
| 77 class TooltipController; | 78 class TooltipController; |
| 78 class VisibilityController; | 79 class VisibilityController; |
| 79 class WindowModalityController; | 80 class WindowModalityController; |
| 80 class WorkspaceController; | 81 class WorkspaceController; |
| 81 } | 82 } |
| 82 | 83 |
| 83 // Shell is a singleton object that presents the Shell API and implements the | 84 // Shell is a singleton object that presents the Shell API and implements the |
| 84 // RootWindow's delegate interface. | 85 // RootWindow's delegate interface. |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 #endif // !defined(OS_MACOSX) | 285 #endif // !defined(OS_MACOSX) |
| 285 | 286 |
| 286 scoped_ptr<ShellDelegate> delegate_; | 287 scoped_ptr<ShellDelegate> delegate_; |
| 287 scoped_ptr<SystemTrayDelegate> tray_delegate_; | 288 scoped_ptr<SystemTrayDelegate> tray_delegate_; |
| 288 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 289 scoped_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
| 289 | 290 |
| 290 scoped_ptr<Launcher> launcher_; | 291 scoped_ptr<Launcher> launcher_; |
| 291 | 292 |
| 292 scoped_ptr<internal::AppList> app_list_; | 293 scoped_ptr<internal::AppList> app_list_; |
| 293 | 294 |
| 295 scoped_ptr<internal::ShellContextMenu> shell_context_menu_; |
| 294 scoped_ptr<internal::StackingController> stacking_controller_; | 296 scoped_ptr<internal::StackingController> stacking_controller_; |
| 295 scoped_ptr<internal::ActivationController> activation_controller_; | 297 scoped_ptr<internal::ActivationController> activation_controller_; |
| 296 scoped_ptr<internal::WindowModalityController> window_modality_controller_; | 298 scoped_ptr<internal::WindowModalityController> window_modality_controller_; |
| 297 scoped_ptr<internal::DragDropController> drag_drop_controller_; | 299 scoped_ptr<internal::DragDropController> drag_drop_controller_; |
| 298 scoped_ptr<internal::WorkspaceController> workspace_controller_; | 300 scoped_ptr<internal::WorkspaceController> workspace_controller_; |
| 299 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; | 301 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; |
| 300 scoped_ptr<internal::ShadowController> shadow_controller_; | 302 scoped_ptr<internal::ShadowController> shadow_controller_; |
| 301 scoped_ptr<internal::TooltipController> tooltip_controller_; | 303 scoped_ptr<internal::TooltipController> tooltip_controller_; |
| 302 scoped_ptr<internal::VisibilityController> visibility_controller_; | 304 scoped_ptr<internal::VisibilityController> visibility_controller_; |
| 303 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; | 305 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 // System tray with clock, Wi-Fi signal, etc. (a replacement in progress for | 344 // System tray with clock, Wi-Fi signal, etc. (a replacement in progress for |
| 343 // |status_widget_|). | 345 // |status_widget_|). |
| 344 scoped_ptr<SystemTray> tray_; | 346 scoped_ptr<SystemTray> tray_; |
| 345 | 347 |
| 346 DISALLOW_COPY_AND_ASSIGN(Shell); | 348 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 347 }; | 349 }; |
| 348 | 350 |
| 349 } // namespace ash | 351 } // namespace ash |
| 350 | 352 |
| 351 #endif // ASH_SHELL_H_ | 353 #endif // ASH_SHELL_H_ |
| OLD | NEW |