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_PORT_MUS_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_PORT_MUS_H_ |
6 #define UI_AURA_MUS_WINDOW_PORT_MUS_H_ | 6 #define UI_AURA_MUS_WINDOW_PORT_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 "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "cc/surfaces/surface_info.h" | 15 #include "cc/surfaces/surface_info.h" |
16 #include "services/ui/public/cpp/client_compositor_frame_sink.h" | 16 #include "services/ui/public/cpp/client_compositor_frame_sink.h" |
17 #include "services/ui/public/interfaces/cursor.mojom.h" | 17 #include "services/ui/public/interfaces/cursor/cursor.mojom.h" |
18 #include "services/ui/public/interfaces/window_tree.mojom.h" | 18 #include "services/ui/public/interfaces/window_tree.mojom.h" |
19 #include "services/ui/public/interfaces/window_tree_constants.mojom.h" | 19 #include "services/ui/public/interfaces/window_tree_constants.mojom.h" |
20 #include "ui/aura/aura_export.h" | 20 #include "ui/aura/aura_export.h" |
21 #include "ui/aura/mus/mus_types.h" | 21 #include "ui/aura/mus/mus_types.h" |
22 #include "ui/aura/mus/window_mus.h" | 22 #include "ui/aura/mus/window_mus.h" |
23 #include "ui/aura/window_port.h" | 23 #include "ui/aura/window_port.h" |
24 #include "ui/gfx/geometry/rect.h" | 24 #include "ui/gfx/geometry/rect.h" |
25 #include "ui/platform_window/mojo/text_input_state.mojom.h" | 25 #include "ui/platform_window/mojo/text_input_state.mojom.h" |
26 | 26 |
27 namespace aura { | 27 namespace aura { |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 gfx::Size last_surface_size_; | 280 gfx::Size last_surface_size_; |
281 | 281 |
282 ui::mojom::CursorType predefined_cursor_ = ui::mojom::CursorType::CURSOR_NULL; | 282 ui::mojom::CursorType predefined_cursor_ = ui::mojom::CursorType::CURSOR_NULL; |
283 | 283 |
284 DISALLOW_COPY_AND_ASSIGN(WindowPortMus); | 284 DISALLOW_COPY_AND_ASSIGN(WindowPortMus); |
285 }; | 285 }; |
286 | 286 |
287 } // namespace aura | 287 } // namespace aura |
288 | 288 |
289 #endif // UI_AURA_MUS_WINDOW_PORT_MUS_H_ | 289 #endif // UI_AURA_MUS_WINDOW_PORT_MUS_H_ |
OLD | NEW |