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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 IPC_STRUCT_TRAITS_MEMBER( | 189 IPC_STRUCT_TRAITS_MEMBER( |
190 is_resourceless_software_draw_with_scroll_or_animation) | 190 is_resourceless_software_draw_with_scroll_or_animation) |
191 IPC_STRUCT_TRAITS_MEMBER(top_controls_height) | 191 IPC_STRUCT_TRAITS_MEMBER(top_controls_height) |
192 IPC_STRUCT_TRAITS_MEMBER(top_controls_shown_ratio) | 192 IPC_STRUCT_TRAITS_MEMBER(top_controls_shown_ratio) |
193 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) | 193 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) |
194 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) | 194 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) |
195 IPC_STRUCT_TRAITS_MEMBER(root_background_color) | 195 IPC_STRUCT_TRAITS_MEMBER(root_background_color) |
196 IPC_STRUCT_TRAITS_MEMBER(selection) | 196 IPC_STRUCT_TRAITS_MEMBER(selection) |
197 IPC_STRUCT_TRAITS_MEMBER(latency_info) | 197 IPC_STRUCT_TRAITS_MEMBER(latency_info) |
198 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) | 198 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) |
| 199 IPC_STRUCT_TRAITS_MEMBER(content_source_id) |
199 IPC_STRUCT_TRAITS_END() | 200 IPC_STRUCT_TRAITS_END() |
200 | 201 |
201 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceInfo) | 202 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceInfo) |
202 IPC_STRUCT_TRAITS_MEMBER(id_) | 203 IPC_STRUCT_TRAITS_MEMBER(id_) |
203 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor_) | 204 IPC_STRUCT_TRAITS_MEMBER(device_scale_factor_) |
204 IPC_STRUCT_TRAITS_MEMBER(size_in_pixels_) | 205 IPC_STRUCT_TRAITS_MEMBER(size_in_pixels_) |
205 IPC_STRUCT_TRAITS_END() | 206 IPC_STRUCT_TRAITS_END() |
206 | 207 |
207 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ | 208 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |