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_USER_DISPLAY_MANAGER_H_ | 5 #ifndef SERVICES_UI_WS_USER_DISPLAY_MANAGER_H_ |
6 #define COMPONENTS_MUS_WS_USER_DISPLAY_MANAGER_H_ | 6 #define SERVICES_UI_WS_USER_DISPLAY_MANAGER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/atomicops.h" | 10 #include "base/atomicops.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "components/mus/public/interfaces/display.mojom.h" | |
13 #include "components/mus/ws/user_id.h" | |
14 #include "mojo/public/cpp/bindings/binding_set.h" | 12 #include "mojo/public/cpp/bindings/binding_set.h" |
15 #include "mojo/public/cpp/bindings/interface_ptr_set.h" | 13 #include "mojo/public/cpp/bindings/interface_ptr_set.h" |
| 14 #include "services/ui/public/interfaces/display.mojom.h" |
| 15 #include "services/ui/ws/user_id.h" |
16 | 16 |
17 namespace gfx { | 17 namespace gfx { |
18 class Point; | 18 class Point; |
19 } | 19 } |
20 | 20 |
21 namespace mus { | 21 namespace mus { |
22 namespace ws { | 22 namespace ws { |
23 | 23 |
24 class Display; | 24 class Display; |
25 class DisplayManager; | 25 class DisplayManager; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 // location, we must always write to it atomically. (On the other side of the | 108 // location, we must always write to it atomically. (On the other side of the |
109 // mojo connection, this data must be read atomically.) | 109 // mojo connection, this data must be read atomically.) |
110 mojo::ScopedSharedBufferMapping cursor_location_mapping_; | 110 mojo::ScopedSharedBufferMapping cursor_location_mapping_; |
111 | 111 |
112 DISALLOW_COPY_AND_ASSIGN(UserDisplayManager); | 112 DISALLOW_COPY_AND_ASSIGN(UserDisplayManager); |
113 }; | 113 }; |
114 | 114 |
115 } // namespace ws | 115 } // namespace ws |
116 } // namespace mus | 116 } // namespace mus |
117 | 117 |
118 #endif // COMPONENTS_MUS_WS_USER_DISPLAY_MANAGER_H_ | 118 #endif // SERVICES_UI_WS_USER_DISPLAY_MANAGER_H_ |
OLD | NEW |