Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Unified Diff: cc/ipc/struct_traits_unittest.cc

Issue 2873593002: Force use of and cache render surface. (Closed)
Patch Set: Fix compile error. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/ipc/struct_traits_unittest.cc
diff --git a/cc/ipc/struct_traits_unittest.cc b/cc/ipc/struct_traits_unittest.cc
index dc5d9cbe56c97eecdeab77266cb1e704533e3ca1..d04e2f554bff173f5291ecf135e427b10c6d2625 100644
--- a/cc/ipc/struct_traits_unittest.cc
+++ b/cc/ipc/struct_traits_unittest.cc
@@ -841,7 +841,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);
vmpstr 2017/07/13 18:01:02 Can you please add bools for this right above, so
wutao 2017/07/14 00:02:53 Done.
SharedQuadState* shared_state_1 = input->CreateAndAppendSharedQuadState();
shared_state_1->SetAll(
@@ -958,7 +958,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);
vmpstr 2017/07/13 18:01:02 same here.
wutao 2017/07/14 00:02:53 Done.
// Unlike the previous test, don't add any quads to the list; we need to
// verify that the serialization code can deal with that.

Powered by Google App Engine
This is Rietveld 408576698