| Index: cc/ipc/render_pass_struct_traits.h
|
| diff --git a/cc/ipc/render_pass_struct_traits.h b/cc/ipc/render_pass_struct_traits.h
|
| index 95a31cfd9fcbe394cb2381f99f9c4e0ec3751adf..124415233ca29242591d90d5a37c90eab52ed552 100644
|
| --- a/cc/ipc/render_pass_struct_traits.h
|
| +++ b/cc/ipc/render_pass_struct_traits.h
|
| @@ -36,6 +36,16 @@ struct StructTraits<cc::mojom::RenderPassDataView,
|
| return input->transform_to_root_target;
|
| }
|
|
|
| + static const cc::FilterOperations& filters(
|
| + const std::unique_ptr<cc::RenderPass>& input) {
|
| + return input->filters;
|
| + }
|
| +
|
| + static const cc::FilterOperations& background_filters(
|
| + const std::unique_ptr<cc::RenderPass>& input) {
|
| + return input->background_filters;
|
| + }
|
| +
|
| static bool has_transparent_background(
|
| const std::unique_ptr<cc::RenderPass>& input) {
|
| return input->has_transparent_background;
|
|
|