| 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 "components/viz/client/client_compositor_frame_sink.h" |
| 17 #include "services/ui/public/interfaces/cursor/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 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 gfx::Size last_surface_size_; | 278 gfx::Size last_surface_size_; |
| 279 | 279 |
| 280 ui::CursorData cursor_; | 280 ui::CursorData cursor_; |
| 281 | 281 |
| 282 DISALLOW_COPY_AND_ASSIGN(WindowPortMus); | 282 DISALLOW_COPY_AND_ASSIGN(WindowPortMus); |
| 283 }; | 283 }; |
| 284 | 284 |
| 285 } // namespace aura | 285 } // namespace aura |
| 286 | 286 |
| 287 #endif // UI_AURA_MUS_WINDOW_PORT_MUS_H_ | 287 #endif // UI_AURA_MUS_WINDOW_PORT_MUS_H_ |
| OLD | NEW |