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

Unified Diff: cc/ipc/struct_traits_unittest.cc

Issue 2873593002: Force use of and cache render surface. (Closed)
Patch Set: Fix for comments in patch 4. Created 3 years, 6 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 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.

Powered by Google App Engine
This is Rietveld 408576698