| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_MUS_ROOT_WINDOW_CONTROLLER_H_ | 5 #ifndef ASH_MUS_ROOT_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_MUS_ROOT_WINDOW_CONTROLLER_H_ | 6 #define ASH_MUS_ROOT_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/mus/disconnected_app_handler.h" | 10 #include "ash/mus/disconnected_app_handler.h" |
| 11 #include "services/ui/public/cpp/window_observer.h" | 11 #include "services/ui/public/cpp/window_observer.h" |
| 12 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" | 12 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" |
| 13 #include "ui/display/display.h" | 13 #include "ui/display/display.h" |
| 14 | 14 |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Insets; | 16 class Insets; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace service_manager { | 19 namespace service_manager { |
| 20 class Connector; | 20 class Connector; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace ash { | 23 namespace ash { |
| 24 | 24 |
| 25 class WorkspaceLayoutManager; | |
| 26 | |
| 27 namespace mus { | 25 namespace mus { |
| 28 | 26 |
| 29 class LayoutManager; | 27 class LayoutManager; |
| 30 class WindowManager; | 28 class WindowManager; |
| 31 class WmRootWindowControllerMus; | 29 class WmRootWindowControllerMus; |
| 32 class WmShelfMus; | 30 class WmShelfMus; |
| 33 class WmTestBase; | 31 class WmTestBase; |
| 34 class WmTestHelper; | 32 class WmTestHelper; |
| 35 class WmWindowMus; | 33 class WmWindowMus; |
| 36 | 34 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 87 |
| 90 std::unique_ptr<DisconnectedAppHandler> disconnected_app_handler_; | 88 std::unique_ptr<DisconnectedAppHandler> disconnected_app_handler_; |
| 91 | 89 |
| 92 DISALLOW_COPY_AND_ASSIGN(RootWindowController); | 90 DISALLOW_COPY_AND_ASSIGN(RootWindowController); |
| 93 }; | 91 }; |
| 94 | 92 |
| 95 } // namespace mus | 93 } // namespace mus |
| 96 } // namespace ash | 94 } // namespace ash |
| 97 | 95 |
| 98 #endif // ASH_MUS_ROOT_WINDOW_CONTROLLER_H_ | 96 #endif // ASH_MUS_ROOT_WINDOW_CONTROLLER_H_ |
| OLD | NEW |