| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 IPC_STRUCT_TRAITS_MEMBER(content_bounds) | 219 IPC_STRUCT_TRAITS_MEMBER(content_bounds) |
| 220 IPC_STRUCT_TRAITS_MEMBER(visible_content_rect) | 220 IPC_STRUCT_TRAITS_MEMBER(visible_content_rect) |
| 221 IPC_STRUCT_TRAITS_MEMBER(clip_rect) | 221 IPC_STRUCT_TRAITS_MEMBER(clip_rect) |
| 222 IPC_STRUCT_TRAITS_MEMBER(is_clipped) | 222 IPC_STRUCT_TRAITS_MEMBER(is_clipped) |
| 223 IPC_STRUCT_TRAITS_MEMBER(opacity) | 223 IPC_STRUCT_TRAITS_MEMBER(opacity) |
| 224 IPC_STRUCT_TRAITS_MEMBER(blend_mode) | 224 IPC_STRUCT_TRAITS_MEMBER(blend_mode) |
| 225 IPC_STRUCT_TRAITS_END() | 225 IPC_STRUCT_TRAITS_END() |
| 226 | 226 |
| 227 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource) | 227 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource) |
| 228 IPC_STRUCT_TRAITS_MEMBER(id) | 228 IPC_STRUCT_TRAITS_MEMBER(id) |
| 229 IPC_STRUCT_TRAITS_MEMBER(sync_point) | |
| 230 IPC_STRUCT_TRAITS_MEMBER(format) | 229 IPC_STRUCT_TRAITS_MEMBER(format) |
| 231 IPC_STRUCT_TRAITS_MEMBER(target) | |
| 232 IPC_STRUCT_TRAITS_MEMBER(filter) | 230 IPC_STRUCT_TRAITS_MEMBER(filter) |
| 233 IPC_STRUCT_TRAITS_MEMBER(size) | 231 IPC_STRUCT_TRAITS_MEMBER(size) |
| 234 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 232 IPC_STRUCT_TRAITS_MEMBER(mailbox_holder) |
| 235 IPC_STRUCT_TRAITS_MEMBER(is_software) | 233 IPC_STRUCT_TRAITS_MEMBER(is_software) |
| 236 IPC_STRUCT_TRAITS_END() | 234 IPC_STRUCT_TRAITS_END() |
| 237 | 235 |
| 238 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource) | 236 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource) |
| 239 IPC_STRUCT_TRAITS_MEMBER(id) | 237 IPC_STRUCT_TRAITS_MEMBER(id) |
| 240 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 238 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
| 241 IPC_STRUCT_TRAITS_MEMBER(count) | 239 IPC_STRUCT_TRAITS_MEMBER(count) |
| 242 IPC_STRUCT_TRAITS_MEMBER(lost) | 240 IPC_STRUCT_TRAITS_MEMBER(lost) |
| 243 IPC_STRUCT_TRAITS_END() | 241 IPC_STRUCT_TRAITS_END() |
| 244 | 242 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 268 IPC_STRUCT_TRAITS_MEMBER(size) | 266 IPC_STRUCT_TRAITS_MEMBER(size) |
| 269 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 267 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 270 IPC_STRUCT_TRAITS_END() | 268 IPC_STRUCT_TRAITS_END() |
| 271 | 269 |
| 272 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) | 270 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) |
| 273 IPC_STRUCT_TRAITS_MEMBER(id) | 271 IPC_STRUCT_TRAITS_MEMBER(id) |
| 274 IPC_STRUCT_TRAITS_MEMBER(size) | 272 IPC_STRUCT_TRAITS_MEMBER(size) |
| 275 IPC_STRUCT_TRAITS_MEMBER(damage_rect) | 273 IPC_STRUCT_TRAITS_MEMBER(damage_rect) |
| 276 IPC_STRUCT_TRAITS_MEMBER(handle) | 274 IPC_STRUCT_TRAITS_MEMBER(handle) |
| 277 IPC_STRUCT_TRAITS_END() | 275 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |