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 COMPONENTS_MUS_WS_DISPLAY_MANAGER_H_ | 5 #ifndef SERVICES_UI_WS_DISPLAY_MANAGER_H_ |
6 #define COMPONENTS_MUS_WS_DISPLAY_MANAGER_H_ | 6 #define SERVICES_UI_WS_DISPLAY_MANAGER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <set> | 10 #include <set> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "components/mus/ws/ids.h" | 13 #include "services/ui/ws/ids.h" |
14 #include "components/mus/ws/user_id.h" | 14 #include "services/ui/ws/user_id.h" |
15 #include "components/mus/ws/user_id_tracker_observer.h" | 15 #include "services/ui/ws/user_id_tracker_observer.h" |
16 | 16 |
17 namespace mus { | 17 namespace mus { |
18 namespace ws { | 18 namespace ws { |
19 | 19 |
20 class Display; | 20 class Display; |
21 class DisplayManagerDelegate; | 21 class DisplayManagerDelegate; |
22 class ServerWindow; | 22 class ServerWindow; |
23 class UserDisplayManager; | 23 class UserDisplayManager; |
24 class UserIdTracker; | 24 class UserIdTracker; |
25 class WindowManagerDisplayRoot; | 25 class WindowManagerDisplayRoot; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 ClientSpecificId next_root_id_; | 92 ClientSpecificId next_root_id_; |
93 | 93 |
94 uint32_t next_display_id_; | 94 uint32_t next_display_id_; |
95 | 95 |
96 DISALLOW_COPY_AND_ASSIGN(DisplayManager); | 96 DISALLOW_COPY_AND_ASSIGN(DisplayManager); |
97 }; | 97 }; |
98 | 98 |
99 } // namespace ws | 99 } // namespace ws |
100 } // namespace mus | 100 } // namespace mus |
101 | 101 |
102 #endif // COMPONENTS_MUS_WS_DISPLAY_MANAGER_H_ | 102 #endif // SERVICES_UI_WS_DISPLAY_MANAGER_H_ |
OLD | NEW |