| 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 10 matching lines...) Expand all Loading... |
| 21 #include "cc/quads/surface_draw_quad.h" | 21 #include "cc/quads/surface_draw_quad.h" |
| 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 "cc/surfaces/surface_sequence.h" | 29 #include "cc/surfaces/surface_sequence.h" |
| 30 #include "content/common/content_export.h" | 30 #include "content/common/content_export.h" |
| 31 #include "gpu/ipc/gpu_command_buffer_traits.h" | 31 #include "gpu/ipc/common/gpu_command_buffer_traits.h" |
| 32 #include "ipc/ipc_message_macros.h" | 32 #include "ipc/ipc_message_macros.h" |
| 33 #include "ui/gfx/ipc/gfx_param_traits.h" | 33 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 34 | 34 |
| 35 #ifndef CONTENT_COMMON_CC_MESSAGES_H_ | 35 #ifndef CONTENT_COMMON_CC_MESSAGES_H_ |
| 36 #define CONTENT_COMMON_CC_MESSAGES_H_ | 36 #define CONTENT_COMMON_CC_MESSAGES_H_ |
| 37 | 37 |
| 38 namespace gfx { | 38 namespace gfx { |
| 39 class Transform; | 39 class Transform; |
| 40 } | 40 } |
| 41 | 41 |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) | 344 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) |
| 345 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) | 345 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) |
| 346 IPC_STRUCT_TRAITS_END() | 346 IPC_STRUCT_TRAITS_END() |
| 347 | 347 |
| 348 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 348 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 349 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 349 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 350 IPC_STRUCT_TRAITS_MEMBER(sync_token) | 350 IPC_STRUCT_TRAITS_MEMBER(sync_token) |
| 351 IPC_STRUCT_TRAITS_MEMBER(size) | 351 IPC_STRUCT_TRAITS_MEMBER(size) |
| 352 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 352 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 353 IPC_STRUCT_TRAITS_END() | 353 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |