| 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/base/filter_operation.h" | 8 #include "cc/base/filter_operation.h" |
| 9 #include "cc/output/begin_frame_args.h" | 9 #include "cc/output/begin_frame_args.h" |
| 10 #include "cc/output/compositor_frame.h" | 10 #include "cc/output/compositor_frame.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #undef IPC_MESSAGE_EXPORT | 32 #undef IPC_MESSAGE_EXPORT |
| 33 #define IPC_MESSAGE_EXPORT CC_IPC_EXPORT | 33 #define IPC_MESSAGE_EXPORT CC_IPC_EXPORT |
| 34 | 34 |
| 35 IPC_ENUM_TRAITS_MAX_VALUE(cc::DrawQuad::Material, cc::DrawQuad::MATERIAL_LAST) | 35 IPC_ENUM_TRAITS_MAX_VALUE(cc::DrawQuad::Material, cc::DrawQuad::MATERIAL_LAST) |
| 36 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType, | 36 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType, |
| 37 cc::FilterOperation::FILTER_TYPE_LAST) | 37 cc::FilterOperation::FILTER_TYPE_LAST) |
| 38 IPC_ENUM_TRAITS_MAX_VALUE(cc::ResourceFormat, cc::RESOURCE_FORMAT_MAX) | 38 IPC_ENUM_TRAITS_MAX_VALUE(cc::ResourceFormat, cc::RESOURCE_FORMAT_MAX) |
| 39 | 39 |
| 40 // TODO(fsamuel): This trait belongs with skia code. | 40 // TODO(fsamuel): This trait belongs with skia code. |
| 41 IPC_ENUM_TRAITS_MAX_VALUE(SkBlendMode, SkBlendMode::kLastMode) | 41 IPC_ENUM_TRAITS_MAX_VALUE(SkBlendMode, SkBlendMode::kLastMode) |
| 42 IPC_ENUM_TRAITS_MAX_VALUE(cc::YUVVideoDrawQuad::ColorSpace, | |
| 43 cc::YUVVideoDrawQuad::COLOR_SPACE_LAST) | |
| 44 IPC_ENUM_TRAITS_MAX_VALUE(cc::SurfaceDrawQuadType, | 42 IPC_ENUM_TRAITS_MAX_VALUE(cc::SurfaceDrawQuadType, |
| 45 cc::SurfaceDrawQuadType::LAST) | 43 cc::SurfaceDrawQuadType::LAST) |
| 46 | 44 |
| 47 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceSequence) | 45 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceSequence) |
| 48 IPC_STRUCT_TRAITS_MEMBER(frame_sink_id) | 46 IPC_STRUCT_TRAITS_MEMBER(frame_sink_id) |
| 49 IPC_STRUCT_TRAITS_MEMBER(sequence) | 47 IPC_STRUCT_TRAITS_MEMBER(sequence) |
| 50 IPC_STRUCT_TRAITS_END() | 48 IPC_STRUCT_TRAITS_END() |
| 51 | 49 |
| 52 IPC_STRUCT_TRAITS_BEGIN(cc::DrawQuad) | 50 IPC_STRUCT_TRAITS_BEGIN(cc::DrawQuad) |
| 53 IPC_STRUCT_TRAITS_MEMBER(material) | 51 IPC_STRUCT_TRAITS_MEMBER(material) |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) | 201 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) |
| 204 IPC_STRUCT_TRAITS_MEMBER(root_background_color) | 202 IPC_STRUCT_TRAITS_MEMBER(root_background_color) |
| 205 IPC_STRUCT_TRAITS_MEMBER(selection) | 203 IPC_STRUCT_TRAITS_MEMBER(selection) |
| 206 IPC_STRUCT_TRAITS_MEMBER(latency_info) | 204 IPC_STRUCT_TRAITS_MEMBER(latency_info) |
| 207 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) | 205 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) |
| 208 IPC_STRUCT_TRAITS_MEMBER(content_source_id) | 206 IPC_STRUCT_TRAITS_MEMBER(content_source_id) |
| 209 IPC_STRUCT_TRAITS_MEMBER(begin_frame_ack) | 207 IPC_STRUCT_TRAITS_MEMBER(begin_frame_ack) |
| 210 IPC_STRUCT_TRAITS_END() | 208 IPC_STRUCT_TRAITS_END() |
| 211 | 209 |
| 212 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ | 210 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |