| 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_ROOT_WINDOW_CONTROLLER_H_ | 5 #ifndef ASH_ROOT_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_ROOT_WINDOW_CONTROLLER_H_ | 6 #define ASH_ROOT_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "ash/common/shell_observer.h" | 12 #include "ash/common/shell_observer.h" |
| 13 #include "ash/public/cpp/shelf_types.h" | 13 #include "ash/public/cpp/shelf_types.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "ui/aura/window.h" | 15 #include "ui/aura/window.h" |
| 16 #include "ui/aura/window_tree_host.h" | 16 #include "ui/aura/window_tree_host.h" |
| 17 | 17 |
| 18 class SkBitmap; | |
| 19 | |
| 20 namespace aura { | 18 namespace aura { |
| 21 class EventFilter; | |
| 22 class Window; | 19 class Window; |
| 23 } | 20 } |
| 24 | 21 |
| 25 namespace gfx { | 22 namespace gfx { |
| 26 class Point; | 23 class Point; |
| 27 } | 24 } |
| 28 | 25 |
| 29 namespace keyboard { | 26 namespace keyboard { |
| 30 class KeyboardController; | 27 class KeyboardController; |
| 31 } | 28 } |
| 32 | 29 |
| 33 namespace ui { | 30 namespace ui { |
| 34 class EventHandler; | 31 class EventHandler; |
| 35 } | 32 } |
| 36 | 33 |
| 37 namespace views { | 34 namespace views { |
| 38 class Widget; | 35 class Widget; |
| 39 } | 36 } |
| 40 | 37 |
| 41 namespace wm { | 38 namespace wm { |
| 42 class InputMethodEventFilter; | |
| 43 class RootWindowEventFilter; | |
| 44 class ScopedCaptureClient; | 39 class ScopedCaptureClient; |
| 45 } | 40 } |
| 46 | 41 |
| 47 namespace ash { | 42 namespace ash { |
| 48 class AshWindowTreeHost; | 43 class AshWindowTreeHost; |
| 49 class DockedWindowLayoutManager; | 44 class DockedWindowLayoutManager; |
| 50 enum class LoginStatus; | 45 enum class LoginStatus; |
| 51 class PanelLayoutManager; | 46 class PanelLayoutManager; |
| 52 class ShelfLayoutManager; | 47 class ShelfLayoutManager; |
| 53 class StackingController; | 48 class StackingController; |
| 54 class StatusAreaWidget; | 49 class StatusAreaWidget; |
| 55 class SystemModalContainerLayoutManager; | |
| 56 class SystemTray; | 50 class SystemTray; |
| 57 class SystemWallpaperController; | 51 class SystemWallpaperController; |
| 58 class TouchHudDebug; | 52 class TouchHudDebug; |
| 59 class TouchHudProjection; | 53 class TouchHudProjection; |
| 60 class WmRootWindowControllerAura; | 54 class WmRootWindowControllerAura; |
| 61 class WmShelfAura; | 55 class WmShelfAura; |
| 62 class WmWindow; | |
| 63 class WorkspaceController; | 56 class WorkspaceController; |
| 64 | 57 |
| 65 #if defined(OS_CHROMEOS) | 58 #if defined(OS_CHROMEOS) |
| 66 class BootSplashScreen; | 59 class BootSplashScreen; |
| 67 class AshTouchExplorationManager; | 60 class AshTouchExplorationManager; |
| 68 #endif | 61 #endif |
| 69 | 62 |
| 70 // This class maintains the per root window state for ash. This class | 63 // This class maintains the per root window state for ash. This class |
| 71 // owns the root window and other dependent objects that should be | 64 // owns the root window and other dependent objects that should be |
| 72 // deleted upon the deletion of the root window. This object is | 65 // deleted upon the deletion of the root window. This object is |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 245 |
| 253 // On classic ash, returns the RootWindowController for the given |root_window|. | 246 // On classic ash, returns the RootWindowController for the given |root_window|. |
| 254 // On mus ash, returns the RootWindowController for the primary display. | 247 // On mus ash, returns the RootWindowController for the primary display. |
| 255 // See RootWindowController class comment above. | 248 // See RootWindowController class comment above. |
| 256 ASH_EXPORT RootWindowController* GetRootWindowController( | 249 ASH_EXPORT RootWindowController* GetRootWindowController( |
| 257 const aura::Window* root_window); | 250 const aura::Window* root_window); |
| 258 | 251 |
| 259 } // namespace ash | 252 } // namespace ash |
| 260 | 253 |
| 261 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 254 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |