| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 IPC_STRUCT_TRAITS_MEMBER(sync_token) | 157 IPC_STRUCT_TRAITS_MEMBER(sync_token) |
| 158 IPC_STRUCT_TRAITS_MEMBER(count) | 158 IPC_STRUCT_TRAITS_MEMBER(count) |
| 159 IPC_STRUCT_TRAITS_MEMBER(lost) | 159 IPC_STRUCT_TRAITS_MEMBER(lost) |
| 160 IPC_STRUCT_TRAITS_END() | 160 IPC_STRUCT_TRAITS_END() |
| 161 | 161 |
| 162 IPC_STRUCT_TRAITS_BEGIN(cc::Selection<gfx::SelectionBound>) | 162 IPC_STRUCT_TRAITS_BEGIN(cc::Selection<gfx::SelectionBound>) |
| 163 IPC_STRUCT_TRAITS_MEMBER(start) | 163 IPC_STRUCT_TRAITS_MEMBER(start) |
| 164 IPC_STRUCT_TRAITS_MEMBER(end) | 164 IPC_STRUCT_TRAITS_MEMBER(end) |
| 165 IPC_STRUCT_TRAITS_MEMBER(is_editable) | 165 IPC_STRUCT_TRAITS_MEMBER(is_editable) |
| 166 IPC_STRUCT_TRAITS_MEMBER(is_empty_text_form_control) | 166 IPC_STRUCT_TRAITS_MEMBER(is_empty_text_form_control) |
| 167 IPC_STRUCT_TRAITS_MEMBER(is_handle_visible) |
| 167 IPC_STRUCT_TRAITS_END() | 168 IPC_STRUCT_TRAITS_END() |
| 168 | 169 |
| 169 IPC_ENUM_TRAITS_MAX_VALUE(cc::BeginFrameArgs::BeginFrameArgsType, | 170 IPC_ENUM_TRAITS_MAX_VALUE(cc::BeginFrameArgs::BeginFrameArgsType, |
| 170 cc::BeginFrameArgs::BEGIN_FRAME_ARGS_TYPE_MAX - 1) | 171 cc::BeginFrameArgs::BEGIN_FRAME_ARGS_TYPE_MAX - 1) |
| 171 | 172 |
| 172 IPC_STRUCT_TRAITS_BEGIN(cc::BeginFrameArgs) | 173 IPC_STRUCT_TRAITS_BEGIN(cc::BeginFrameArgs) |
| 173 IPC_STRUCT_TRAITS_MEMBER(frame_time) | 174 IPC_STRUCT_TRAITS_MEMBER(frame_time) |
| 174 IPC_STRUCT_TRAITS_MEMBER(deadline) | 175 IPC_STRUCT_TRAITS_MEMBER(deadline) |
| 175 IPC_STRUCT_TRAITS_MEMBER(interval) | 176 IPC_STRUCT_TRAITS_MEMBER(interval) |
| 176 IPC_STRUCT_TRAITS_MEMBER(type) | 177 IPC_STRUCT_TRAITS_MEMBER(type) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 198 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) | 199 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) |
| 199 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) | 200 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) |
| 200 IPC_STRUCT_TRAITS_END() | 201 IPC_STRUCT_TRAITS_END() |
| 201 | 202 |
| 202 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 203 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 203 IPC_STRUCT_TRAITS_MEMBER(size) | 204 IPC_STRUCT_TRAITS_MEMBER(size) |
| 204 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 205 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 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 |