| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 MASH_WM_WINDOW_MANAGER_APPLICATION_H_ | 5 #ifndef MASH_WM_WINDOW_MANAGER_APPLICATION_H_ |
| 6 #define MASH_WM_WINDOW_MANAGER_APPLICATION_H_ | 6 #define MASH_WM_WINDOW_MANAGER_APPLICATION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "components/mus/common/types.h" | 15 #include "components/mus/common/types.h" |
| 16 #include "components/mus/public/interfaces/accelerator_registrar.mojom.h" | 16 #include "components/mus/public/interfaces/accelerator_registrar.mojom.h" |
| 17 #include "components/mus/public/interfaces/window_manager.mojom.h" | 17 #include "components/mus/public/interfaces/window_manager.mojom.h" |
| 18 #include "components/mus/public/interfaces/window_manager_factory.mojom.h" | 18 #include "components/mus/public/interfaces/window_manager_factory.mojom.h" |
| 19 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | 19 #include "components/mus/public/interfaces/window_tree_host.mojom.h" |
| 20 #include "mash/session/public/interfaces/session.mojom.h" | 20 #include "mash/session/public/interfaces/session.mojom.h" |
| 21 #include "mash/wm/public/interfaces/user_window_controller.mojom.h" | 21 #include "mash/wm/public/interfaces/user_window_controller.mojom.h" |
| 22 #include "mojo/public/cpp/bindings/binding.h" | 22 #include "mojo/public/cpp/bindings/binding.h" |
| 23 #include "mojo/public/cpp/bindings/binding_set.h" | 23 #include "mojo/public/cpp/bindings/binding_set.h" |
| 24 #include "mojo/services/tracing/public/cpp/tracing_impl.h" | 24 #include "mojo/services/tracing/public/cpp/tracing_impl.h" |
| 25 #include "mojo/shell/public/cpp/shell_client.h" | 25 #include "services/shell/public/cpp/shell_client.h" |
| 26 | 26 |
| 27 namespace ui { | 27 namespace ui { |
| 28 namespace mojo { | 28 namespace mojo { |
| 29 class UIInit; | 29 class UIInit; |
| 30 } | 30 } |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace views { | 33 namespace views { |
| 34 class AuraInit; | 34 class AuraInit; |
| 35 } | 35 } |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 132 |
| 133 base::ObserverList<RootWindowsObserver> root_windows_observers_; | 133 base::ObserverList<RootWindowsObserver> root_windows_observers_; |
| 134 | 134 |
| 135 DISALLOW_COPY_AND_ASSIGN(WindowManagerApplication); | 135 DISALLOW_COPY_AND_ASSIGN(WindowManagerApplication); |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace wm | 138 } // namespace wm |
| 139 } // namespace mash | 139 } // namespace mash |
| 140 | 140 |
| 141 #endif // MASH_WM_WINDOW_MANAGER_APPLICATION_H_ | 141 #endif // MASH_WM_WINDOW_MANAGER_APPLICATION_H_ |
| OLD | NEW |