| 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> |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 cc::FrameSinkId frame_sink_id_; | 279 cc::FrameSinkId frame_sink_id_; |
| 280 base::Closure pending_compositor_frame_sink_request_; | 280 base::Closure pending_compositor_frame_sink_request_; |
| 281 | 281 |
| 282 cc::SurfaceInfo primary_surface_info_; | 282 cc::SurfaceInfo primary_surface_info_; |
| 283 cc::SurfaceInfo fallback_surface_info_; | 283 cc::SurfaceInfo fallback_surface_info_; |
| 284 | 284 |
| 285 cc::LocalSurfaceId local_surface_id_; | 285 cc::LocalSurfaceId local_surface_id_; |
| 286 cc::LocalSurfaceIdAllocator local_surface_id_allocator_; | 286 cc::LocalSurfaceIdAllocator local_surface_id_allocator_; |
| 287 gfx::Size last_surface_size_; | 287 gfx::Size last_surface_size_; |
| 288 | 288 |
| 289 ui::mojom::CursorType predefined_cursor_ = ui::mojom::CursorType::CURSOR_NULL; | 289 ui::mojom::CursorType predefined_cursor_ = ui::mojom::CursorType::kNull; |
| 290 | 290 |
| 291 DISALLOW_COPY_AND_ASSIGN(WindowPortMus); | 291 DISALLOW_COPY_AND_ASSIGN(WindowPortMus); |
| 292 }; | 292 }; |
| 293 | 293 |
| 294 } // namespace aura | 294 } // namespace aura |
| 295 | 295 |
| 296 #endif // UI_AURA_MUS_WINDOW_PORT_MUS_H_ | 296 #endif // UI_AURA_MUS_WINDOW_PORT_MUS_H_ |
| OLD | NEW |