| Index: cc/ipc/struct_traits_unittest.cc
|
| diff --git a/cc/ipc/struct_traits_unittest.cc b/cc/ipc/struct_traits_unittest.cc
|
| index 1a50161c6360f8212edf608d617fb038144824eb..32a8a27073a82b3b5562c205fe6b66efb0bcd6e8 100644
|
| --- a/cc/ipc/struct_traits_unittest.cc
|
| +++ b/cc/ipc/struct_traits_unittest.cc
|
| @@ -840,7 +840,7 @@ TEST_F(StructTraitsTest, RenderPass) {
|
| std::unique_ptr<RenderPass> input = RenderPass::Create();
|
| input->SetAll(render_pass_id, output_rect, damage_rect, transform_to_root,
|
| filters, background_filters, color_space,
|
| - has_transparent_background);
|
| + has_transparent_background, false, false);
|
|
|
| SharedQuadState* shared_state_1 = input->CreateAndAppendSharedQuadState();
|
| shared_state_1->SetAll(
|
| @@ -957,7 +957,7 @@ TEST_F(StructTraitsTest, RenderPassWithEmptySharedQuadStateList) {
|
| std::unique_ptr<RenderPass> input = RenderPass::Create();
|
| input->SetAll(render_pass_id, output_rect, damage_rect, transform_to_root,
|
| FilterOperations(), FilterOperations(), color_space,
|
| - has_transparent_background);
|
| + has_transparent_background, false, false);
|
|
|
| // Unlike the previous test, don't add any quads to the list; we need to
|
| // verify that the serialization code can deal with that.
|
|
|