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 #include <vector> | 10 #include <vector> |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 class Shelf; | 56 class Shelf; |
57 class ShelfLayoutManager; | 57 class ShelfLayoutManager; |
58 class StackingController; | 58 class StackingController; |
59 class StatusAreaWidget; | 59 class StatusAreaWidget; |
60 class SystemModalContainerLayoutManager; | 60 class SystemModalContainerLayoutManager; |
61 class SystemTray; | 61 class SystemTray; |
62 class SystemWallpaperController; | 62 class SystemWallpaperController; |
63 class TouchHudDebug; | 63 class TouchHudDebug; |
64 class TouchHudProjection; | 64 class TouchHudProjection; |
65 class WallpaperWidgetController; | 65 class WallpaperWidgetController; |
| 66 class WmWindow; |
66 class WorkspaceController; | 67 class WorkspaceController; |
67 | 68 |
68 namespace mus { | 69 namespace mus { |
69 class WindowManager; | 70 class WindowManager; |
70 } | 71 } |
71 | 72 |
72 namespace wm { | 73 namespace wm { |
73 class RootWindowLayoutManager; | 74 class RootWindowLayoutManager; |
74 } | 75 } |
75 | 76 |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 | 379 |
379 // On classic ash, returns the RootWindowController for the given |root_window|. | 380 // On classic ash, returns the RootWindowController for the given |root_window|. |
380 // On mus ash, returns the RootWindowController for the primary display. | 381 // On mus ash, returns the RootWindowController for the primary display. |
381 // See RootWindowController class comment above. | 382 // See RootWindowController class comment above. |
382 ASH_EXPORT RootWindowController* GetRootWindowController( | 383 ASH_EXPORT RootWindowController* GetRootWindowController( |
383 const aura::Window* root_window); | 384 const aura::Window* root_window); |
384 | 385 |
385 } // namespace ash | 386 } // namespace ash |
386 | 387 |
387 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 388 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
OLD | NEW |