OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_MUS_WS_WINDOW_SERVER_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_SERVER_H_ |
6 #define COMPONENTS_MUS_WS_WINDOW_SERVER_H_ | 6 #define SERVICES_UI_WS_WINDOW_SERVER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "components/mus/public/interfaces/window_manager_window_tree_factory.mo
jom.h" | |
17 #include "components/mus/public/interfaces/window_tree.mojom.h" | |
18 #include "components/mus/public/interfaces/window_tree_host.mojom.h" | |
19 #include "components/mus/surfaces/surfaces_state.h" | |
20 #include "components/mus/ws/display.h" | |
21 #include "components/mus/ws/display_manager_delegate.h" | |
22 #include "components/mus/ws/ids.h" | |
23 #include "components/mus/ws/operation.h" | |
24 #include "components/mus/ws/server_window_delegate.h" | |
25 #include "components/mus/ws/server_window_observer.h" | |
26 #include "components/mus/ws/user_id_tracker.h" | |
27 #include "components/mus/ws/user_id_tracker_observer.h" | |
28 #include "components/mus/ws/window_manager_window_tree_factory_set.h" | |
29 #include "mojo/public/cpp/bindings/array.h" | 16 #include "mojo/public/cpp/bindings/array.h" |
30 #include "mojo/public/cpp/bindings/binding.h" | 17 #include "mojo/public/cpp/bindings/binding.h" |
| 18 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" |
| 19 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 20 #include "services/ui/public/interfaces/window_tree_host.mojom.h" |
| 21 #include "services/ui/surfaces/surfaces_state.h" |
| 22 #include "services/ui/ws/display.h" |
| 23 #include "services/ui/ws/display_manager_delegate.h" |
| 24 #include "services/ui/ws/ids.h" |
| 25 #include "services/ui/ws/operation.h" |
| 26 #include "services/ui/ws/server_window_delegate.h" |
| 27 #include "services/ui/ws/server_window_observer.h" |
| 28 #include "services/ui/ws/user_id_tracker.h" |
| 29 #include "services/ui/ws/user_id_tracker_observer.h" |
| 30 #include "services/ui/ws/window_manager_window_tree_factory_set.h" |
31 | 31 |
32 namespace mus { | 32 namespace mus { |
33 namespace ws { | 33 namespace ws { |
34 | 34 |
35 class AccessPolicy; | 35 class AccessPolicy; |
36 class DisplayManager; | 36 class DisplayManager; |
37 class ServerWindow; | 37 class ServerWindow; |
38 class UserActivityMonitor; | 38 class UserActivityMonitor; |
39 class WindowManagerState; | 39 class WindowManagerState; |
40 class WindowServerDelegate; | 40 class WindowServerDelegate; |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 UserActivityMonitorMap activity_monitor_map_; | 332 UserActivityMonitorMap activity_monitor_map_; |
333 | 333 |
334 WindowManagerWindowTreeFactorySet window_manager_window_tree_factory_set_; | 334 WindowManagerWindowTreeFactorySet window_manager_window_tree_factory_set_; |
335 | 335 |
336 DISALLOW_COPY_AND_ASSIGN(WindowServer); | 336 DISALLOW_COPY_AND_ASSIGN(WindowServer); |
337 }; | 337 }; |
338 | 338 |
339 } // namespace ws | 339 } // namespace ws |
340 } // namespace mus | 340 } // namespace mus |
341 | 341 |
342 #endif // COMPONENTS_MUS_WS_WINDOW_SERVER_H_ | 342 #endif // SERVICES_UI_WS_WINDOW_SERVER_H_ |
OLD | NEW |