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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 IPC_STRUCT_TRAITS_MEMBER(start) | 151 IPC_STRUCT_TRAITS_MEMBER(start) |
152 IPC_STRUCT_TRAITS_MEMBER(end) | 152 IPC_STRUCT_TRAITS_MEMBER(end) |
153 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 153 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
154 IPC_STRUCT_TRAITS_MEMBER(is_empty_text_form_control) | 154 IPC_STRUCT_TRAITS_MEMBER(is_empty_text_form_control) |
155 IPC_STRUCT_TRAITS_END() | 155 IPC_STRUCT_TRAITS_END() |
156 | 156 |
157 IPC_ENUM_TRAITS_MAX_VALUE(cc::BeginFrameArgs::BeginFrameArgsType, | 157 IPC_ENUM_TRAITS_MAX_VALUE(cc::BeginFrameArgs::BeginFrameArgsType, |
158 cc::BeginFrameArgs::BEGIN_FRAME_ARGS_TYPE_MAX - 1) | 158 cc::BeginFrameArgs::BEGIN_FRAME_ARGS_TYPE_MAX - 1) |
159 | 159 |
160 IPC_STRUCT_TRAITS_BEGIN(cc::BeginFrameArgs) | 160 IPC_STRUCT_TRAITS_BEGIN(cc::BeginFrameArgs) |
| 161 IPC_STRUCT_TRAITS_MEMBER(source_id) |
| 162 IPC_STRUCT_TRAITS_MEMBER(sequence_number) |
161 IPC_STRUCT_TRAITS_MEMBER(frame_time) | 163 IPC_STRUCT_TRAITS_MEMBER(frame_time) |
162 IPC_STRUCT_TRAITS_MEMBER(deadline) | 164 IPC_STRUCT_TRAITS_MEMBER(deadline) |
163 IPC_STRUCT_TRAITS_MEMBER(interval) | 165 IPC_STRUCT_TRAITS_MEMBER(interval) |
164 IPC_STRUCT_TRAITS_MEMBER(type) | 166 IPC_STRUCT_TRAITS_MEMBER(type) |
165 IPC_STRUCT_TRAITS_END() | 167 IPC_STRUCT_TRAITS_END() |
166 | 168 |
167 IPC_STRUCT_TRAITS_BEGIN(cc::CompositorFrameMetadata) | 169 IPC_STRUCT_TRAITS_BEGIN(cc::CompositorFrameMetadata) |
168 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) | 170 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor) |
169 IPC_STRUCT_TRAITS_MEMBER(root_scroll_offset) | 171 IPC_STRUCT_TRAITS_MEMBER(root_scroll_offset) |
170 IPC_STRUCT_TRAITS_MEMBER(page_scale_factor) | 172 IPC_STRUCT_TRAITS_MEMBER(page_scale_factor) |
(...skipping 12 matching lines...) Expand all Loading... |
183 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) | 185 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) |
184 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) | 186 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) |
185 IPC_STRUCT_TRAITS_MEMBER(root_background_color) | 187 IPC_STRUCT_TRAITS_MEMBER(root_background_color) |
186 IPC_STRUCT_TRAITS_MEMBER(selection) | 188 IPC_STRUCT_TRAITS_MEMBER(selection) |
187 IPC_STRUCT_TRAITS_MEMBER(latency_info) | 189 IPC_STRUCT_TRAITS_MEMBER(latency_info) |
188 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) | 190 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) |
189 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) | 191 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) |
190 IPC_STRUCT_TRAITS_END() | 192 IPC_STRUCT_TRAITS_END() |
191 | 193 |
192 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ | 194 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |