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

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

Issue 2779633002: [cc] Remove remaining_frames from BeginFrameAck. (Closed)
Patch Set: Created 3 years, 9 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: 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 ec70efa9a47fc52d6743c65dd079135ac683f6f5..5cf50dec9fdd508067afcc29e84d92963f700555 100644
--- a/services/ui/ws/window_tree_client_unittest.cc
+++ b/services/ui/ws/window_tree_client_unittest.cc
@@ -2211,8 +2211,7 @@ TEST_F(WindowTreeClientTest, SurfaceIdPropagation) {
render_pass->SetNew(1, frame_rect, frame_rect, gfx::Transform());
compositor_frame.render_pass_list.push_back(std::move(render_pass));
compositor_frame.metadata.device_scale_factor = 1.f;
- compositor_frame.metadata.begin_frame_ack =
- cc::BeginFrameAck(0, 1, 1, 0, true);
+ compositor_frame.metadata.begin_frame_ack = cc::BeginFrameAck(0, 1, 1, true);
cc::LocalSurfaceId local_surface_id(1, base::UnguessableToken::Create());
surface_ptr->SubmitCompositorFrame(local_surface_id,
std::move(compositor_frame));

Powered by Google App Engine
This is Rietveld 408576698