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> |
11 | 11 |
12 #include "ash/ash_export.h" | 12 #include "ash/ash_export.h" |
13 #include "ash/common/shell_observer.h" | |
14 #include "ash/common/wm/workspace/workspace_types.h" | |
15 #include "ash/public/cpp/shelf_types.h" | 13 #include "ash/public/cpp/shelf_types.h" |
| 14 #include "ash/shell_observer.h" |
| 15 #include "ash/wm/workspace/workspace_types.h" |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "ui/aura/window.h" | 17 #include "ui/aura/window.h" |
18 #include "ui/aura/window_tree_host.h" | 18 #include "ui/aura/window_tree_host.h" |
19 #include "ui/views/widget/widget.h" | 19 #include "ui/views/widget/widget.h" |
20 | 20 |
21 namespace aura { | 21 namespace aura { |
22 class Window; | 22 class Window; |
23 } | 23 } |
24 | 24 |
25 namespace gfx { | 25 namespace gfx { |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 | 384 |
385 // On classic ash, returns the RootWindowController for the given |root_window|. | 385 // On classic ash, returns the RootWindowController for the given |root_window|. |
386 // On mus ash, returns the RootWindowController for the primary display. | 386 // On mus ash, returns the RootWindowController for the primary display. |
387 // See RootWindowController class comment above. | 387 // See RootWindowController class comment above. |
388 ASH_EXPORT RootWindowController* GetRootWindowController( | 388 ASH_EXPORT RootWindowController* GetRootWindowController( |
389 const aura::Window* root_window); | 389 const aura::Window* root_window); |
390 | 390 |
391 } // namespace ash | 391 } // namespace ash |
392 | 392 |
393 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ | 393 #endif // ASH_ROOT_WINDOW_CONTROLLER_H_ |
OLD | NEW |