| 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 CC_IPC_CC_PARAM_TRAITS_MACROS_H_ | 5 #ifndef CC_IPC_CC_PARAM_TRAITS_MACROS_H_ |
| 6 #define CC_IPC_CC_PARAM_TRAITS_MACROS_H_ | 6 #define CC_IPC_CC_PARAM_TRAITS_MACROS_H_ |
| 7 | 7 |
| 8 #include "cc/output/begin_frame_args.h" | 8 #include "cc/output/begin_frame_args.h" |
| 9 #include "cc/output/compositor_frame.h" | 9 #include "cc/output/compositor_frame.h" |
| 10 #include "cc/output/filter_operation.h" | 10 #include "cc/output/filter_operation.h" |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 IPC_STRUCT_TRAITS_END() | 140 IPC_STRUCT_TRAITS_END() |
| 141 | 141 |
| 142 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource) | 142 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource) |
| 143 IPC_STRUCT_TRAITS_MEMBER(id) | 143 IPC_STRUCT_TRAITS_MEMBER(id) |
| 144 IPC_STRUCT_TRAITS_MEMBER(format) | 144 IPC_STRUCT_TRAITS_MEMBER(format) |
| 145 IPC_STRUCT_TRAITS_MEMBER(filter) | 145 IPC_STRUCT_TRAITS_MEMBER(filter) |
| 146 IPC_STRUCT_TRAITS_MEMBER(size) | 146 IPC_STRUCT_TRAITS_MEMBER(size) |
| 147 IPC_STRUCT_TRAITS_MEMBER(mailbox_holder) | 147 IPC_STRUCT_TRAITS_MEMBER(mailbox_holder) |
| 148 IPC_STRUCT_TRAITS_MEMBER(read_lock_fences_enabled) | 148 IPC_STRUCT_TRAITS_MEMBER(read_lock_fences_enabled) |
| 149 IPC_STRUCT_TRAITS_MEMBER(is_software) | 149 IPC_STRUCT_TRAITS_MEMBER(is_software) |
| 150 IPC_STRUCT_TRAITS_MEMBER(gpu_memory_buffer_id) | |
| 151 IPC_STRUCT_TRAITS_MEMBER(is_overlay_candidate) | 150 IPC_STRUCT_TRAITS_MEMBER(is_overlay_candidate) |
| 152 IPC_STRUCT_TRAITS_END() | 151 IPC_STRUCT_TRAITS_END() |
| 153 | 152 |
| 154 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource) | 153 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource) |
| 155 IPC_STRUCT_TRAITS_MEMBER(id) | 154 IPC_STRUCT_TRAITS_MEMBER(id) |
| 156 IPC_STRUCT_TRAITS_MEMBER(sync_token) | 155 IPC_STRUCT_TRAITS_MEMBER(sync_token) |
| 157 IPC_STRUCT_TRAITS_MEMBER(count) | 156 IPC_STRUCT_TRAITS_MEMBER(count) |
| 158 IPC_STRUCT_TRAITS_MEMBER(lost) | 157 IPC_STRUCT_TRAITS_MEMBER(lost) |
| 159 IPC_STRUCT_TRAITS_END() | 158 IPC_STRUCT_TRAITS_END() |
| 160 | 159 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 IPC_STRUCT_TRAITS_END() | 194 IPC_STRUCT_TRAITS_END() |
| 196 | 195 |
| 197 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 196 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 198 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 197 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 199 IPC_STRUCT_TRAITS_MEMBER(sync_token) | 198 IPC_STRUCT_TRAITS_MEMBER(sync_token) |
| 200 IPC_STRUCT_TRAITS_MEMBER(size) | 199 IPC_STRUCT_TRAITS_MEMBER(size) |
| 201 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 200 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 202 IPC_STRUCT_TRAITS_END() | 201 IPC_STRUCT_TRAITS_END() |
| 203 | 202 |
| 204 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ | 203 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |