| 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 13 matching lines...) Expand all Loading... |
| 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/common/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 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 34 | 35 |
| 35 #ifndef CONTENT_COMMON_CC_MESSAGES_H_ | 36 #ifndef CONTENT_COMMON_CC_MESSAGES_H_ |
| 36 #define CONTENT_COMMON_CC_MESSAGES_H_ | 37 #define CONTENT_COMMON_CC_MESSAGES_H_ |
| 37 | 38 |
| 38 namespace gfx { | 39 namespace gfx { |
| 39 class Transform; | 40 class Transform; |
| 40 } | 41 } |
| 41 | 42 |
| 42 namespace cc { | 43 namespace cc { |
| 43 class FilterOperations; | 44 class FilterOperations; |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) | 335 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) |
| 335 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) | 336 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) |
| 336 IPC_STRUCT_TRAITS_END() | 337 IPC_STRUCT_TRAITS_END() |
| 337 | 338 |
| 338 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 339 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 339 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 340 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 340 IPC_STRUCT_TRAITS_MEMBER(sync_token) | 341 IPC_STRUCT_TRAITS_MEMBER(sync_token) |
| 341 IPC_STRUCT_TRAITS_MEMBER(size) | 342 IPC_STRUCT_TRAITS_MEMBER(size) |
| 342 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 343 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 343 IPC_STRUCT_TRAITS_END() | 344 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |