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 UI_AURA_MUS_WINDOW_MUS_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_MUS_H_ |
6 #define UI_AURA_MUS_WINDOW_MUS_H_ | 6 #define UI_AURA_MUS_WINDOW_MUS_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "services/ui/public/interfaces/cursor.mojom.h" | 13 #include "services/ui/public/interfaces/cursor/cursor.mojom.h" |
14 #include "ui/aura/aura_export.h" | 14 #include "ui/aura/aura_export.h" |
15 #include "ui/aura/mus/mus_types.h" | 15 #include "ui/aura/mus/mus_types.h" |
16 | 16 |
17 namespace cc { | 17 namespace cc { |
18 class SurfaceInfo; | 18 class SurfaceInfo; |
19 } | 19 } |
20 | 20 |
21 namespace gfx { | 21 namespace gfx { |
22 class Rect; | 22 class Rect; |
23 } | 23 } |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 131 |
132 void set_server_id(Id id) { server_id_ = id; } | 132 void set_server_id(Id id) { server_id_ = id; } |
133 | 133 |
134 Id server_id_ = kInvalidServerId; | 134 Id server_id_ = kInvalidServerId; |
135 const WindowMusType window_mus_type_; | 135 const WindowMusType window_mus_type_; |
136 }; | 136 }; |
137 | 137 |
138 } // namespace aura | 138 } // namespace aura |
139 | 139 |
140 #endif // UI_AURA_MUS_WINDOW_MUS_H_ | 140 #endif // UI_AURA_MUS_WINDOW_MUS_H_ |
OLD | NEW |