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

Unified Diff: services/ui/ws/window_tree_client_unittest.cc

Issue 2543473004: cc: Move filters from RenderPassDrawQuad to RenderPass (Closed)
Patch Set: Created 4 years 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: services/ui/ws/window_tree_client_unittest.cc
diff --git a/services/ui/ws/window_tree_client_unittest.cc b/services/ui/ws/window_tree_client_unittest.cc
index fe6a01a58c863a5660211b465b3f92d38520359d..ac064a63b4cc360792eafc5bbd904617b0de7fa8 100644
--- a/services/ui/ws/window_tree_client_unittest.cc
+++ b/services/ui/ws/window_tree_client_unittest.cc
@@ -2165,7 +2165,8 @@ TEST_F(WindowTreeClientTest, SurfaceIdPropagation) {
std::unique_ptr<cc::RenderPass> render_pass = cc::RenderPass::Create();
gfx::Rect frame_rect(0, 0, 100, 100);
render_pass->SetNew(cc::RenderPassId(1, 1), frame_rect, frame_rect,
- gfx::Transform());
+ gfx::Transform(), cc::FilterOperations(),
+ cc::FilterOperations());
compositor_frame.render_pass_list.push_back(std::move(render_pass));
cc::LocalFrameId local_frame_id(1, base::UnguessableToken::Create());
surface_ptr->SubmitCompositorFrame(local_frame_id,

Powered by Google App Engine
This is Rietveld 408576698