OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // IPC Messages sent between compositor instances. | 5 // IPC Messages sent between compositor instances. |
6 | 6 |
7 #include "cc/output/begin_frame_args.h" | 7 #include "cc/output/begin_frame_args.h" |
8 #include "cc/output/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
9 #include "cc/output/compositor_frame_ack.h" | 9 #include "cc/output/compositor_frame_ack.h" |
10 #include "cc/output/filter_operation.h" | 10 #include "cc/output/filter_operation.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "cc/quads/texture_draw_quad.h" | 22 #include "cc/quads/texture_draw_quad.h" |
23 #include "cc/quads/tile_draw_quad.h" | 23 #include "cc/quads/tile_draw_quad.h" |
24 #include "cc/quads/yuv_video_draw_quad.h" | 24 #include "cc/quads/yuv_video_draw_quad.h" |
25 #include "cc/resources/resource_format.h" | 25 #include "cc/resources/resource_format.h" |
26 #include "cc/resources/returned_resource.h" | 26 #include "cc/resources/returned_resource.h" |
27 #include "cc/resources/transferable_resource.h" | 27 #include "cc/resources/transferable_resource.h" |
28 #include "cc/surfaces/surface_id.h" | 28 #include "cc/surfaces/surface_id.h" |
29 #include "content/common/content_export.h" | 29 #include "content/common/content_export.h" |
30 #include "gpu/ipc/gpu_command_buffer_traits.h" | 30 #include "gpu/ipc/gpu_command_buffer_traits.h" |
31 #include "ipc/ipc_message_macros.h" | 31 #include "ipc/ipc_message_macros.h" |
| 32 #include "ui/gfx/ipc/gfx_param_traits.h" |
32 | 33 |
33 #ifndef CONTENT_COMMON_CC_MESSAGES_H_ | 34 #ifndef CONTENT_COMMON_CC_MESSAGES_H_ |
34 #define CONTENT_COMMON_CC_MESSAGES_H_ | 35 #define CONTENT_COMMON_CC_MESSAGES_H_ |
35 | 36 |
36 namespace gfx { | 37 namespace gfx { |
37 class Transform; | 38 class Transform; |
38 } | 39 } |
39 | 40 |
40 namespace cc { | 41 namespace cc { |
41 class FilterOperations; | 42 class FilterOperations; |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 IPC_STRUCT_TRAITS_MEMBER(overdraw_bottom_height) | 278 IPC_STRUCT_TRAITS_MEMBER(overdraw_bottom_height) |
278 IPC_STRUCT_TRAITS_MEMBER(latency_info) | 279 IPC_STRUCT_TRAITS_MEMBER(latency_info) |
279 IPC_STRUCT_TRAITS_END() | 280 IPC_STRUCT_TRAITS_END() |
280 | 281 |
281 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 282 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
282 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 283 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
283 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 284 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
284 IPC_STRUCT_TRAITS_MEMBER(size) | 285 IPC_STRUCT_TRAITS_MEMBER(size) |
285 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 286 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
286 IPC_STRUCT_TRAITS_END() | 287 IPC_STRUCT_TRAITS_END() |
OLD | NEW |