Chromium Code Reviews| 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/shelf/shelf_types.h" | 12 #include "ash/common/shelf/shelf_types.h" |
| 13 #include "ash/common/shell_observer.h" | 13 #include "ash/common/shell_observer.h" |
| 14 #include "ash/system/user/login_status.h" | |
| 15 #include "base/macros.h" | 14 #include "base/macros.h" |
| 16 #include "ui/aura/window.h" | 15 #include "ui/aura/window.h" |
| 17 #include "ui/aura/window_tree_host.h" | 16 #include "ui/aura/window_tree_host.h" |
| 18 #include "ui/base/ui_base_types.h" | 17 #include "ui/base/ui_base_types.h" |
| 19 | 18 |
| 20 class SkBitmap; | 19 class SkBitmap; |
| 21 | 20 |
| 22 namespace aura { | 21 namespace aura { |
| 23 class EventFilter; | 22 class EventFilter; |
| 24 class Window; | 23 class Window; |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 48 class RootWindowEventFilter; | 47 class RootWindowEventFilter; |
| 49 class ScopedCaptureClient; | 48 class ScopedCaptureClient; |
| 50 } | 49 } |
| 51 | 50 |
| 52 namespace ash { | 51 namespace ash { |
| 53 class AshWindowTreeHost; | 52 class AshWindowTreeHost; |
| 54 class AlwaysOnTopController; | 53 class AlwaysOnTopController; |
| 55 class AnimatingDesktopController; | 54 class AnimatingDesktopController; |
| 56 class DesktopBackgroundWidgetController; | 55 class DesktopBackgroundWidgetController; |
| 57 class DockedWindowLayoutManager; | 56 class DockedWindowLayoutManager; |
| 57 enum class LoginStatus; | |
|
msw
2016/06/24 20:04:28
WDYT about these forward decls? I'm on the fence..
James Cook
2016/06/24 20:18:53
Either #include "ash/common/login_status.h" or for
msw
2016/06/24 20:26:46
For sure, and I'd totally forward declare a class
| |
| 58 class PanelLayoutManager; | 58 class PanelLayoutManager; |
| 59 class RootWindowControllerCommon; | 59 class RootWindowControllerCommon; |
| 60 class Shelf; | 60 class Shelf; |
| 61 class ShelfLayoutManager; | 61 class ShelfLayoutManager; |
| 62 class ShelfWidget; | 62 class ShelfWidget; |
| 63 class StackingController; | 63 class StackingController; |
| 64 class StatusAreaWidget; | 64 class StatusAreaWidget; |
| 65 class SystemBackgroundController; | 65 class SystemBackgroundController; |
| 66 class SystemModalContainerLayoutManager; | 66 class SystemModalContainerLayoutManager; |
| 67 class SystemTray; | 67 class SystemTray; |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 337 | 337 |
| 338 // On classic ash, returns the RootWindowController for the given |root_window|. | 338 // On classic ash, returns the RootWindowController for the given |root_window|. |
| 339 // On mus ash, returns the RootWindowController for the primary display. | 339 // On mus ash, returns the RootWindowController for the primary display. |
| 340 // See RootWindowController class comment above. | 340 // See RootWindowController class comment above. |
| 341 ASH_EXPORT RootWindowController* GetRootWindowController( | 341 ASH_EXPORT RootWindowController* GetRootWindowController( |
| 342 const aura::Window* root_window); | 342 const aura::Window* root_window); |
| 343 | 343 |
| 344 } // namespace ash | 344 } // namespace ash |
| 345 | 345 |
| 346 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 346 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |