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

Unified Diff: ui/aura/mus/window_port_mus.cc

Issue 2903853002: Make RendererCompositorFrameSink derive from ClientCompositorFrameSink (Closed)
Patch Set: Fixed dependency Created 3 years, 7 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: ui/aura/mus/window_port_mus.cc
diff --git a/ui/aura/mus/window_port_mus.cc b/ui/aura/mus/window_port_mus.cc
index ef0d0ee002c381d1e8a0659bb7f2219df8591222..e380cfcbe6e3de8bcdace4b69ea90227a104d5ae 100644
--- a/ui/aura/mus/window_port_mus.cc
+++ b/ui/aura/mus/window_port_mus.cc
@@ -104,8 +104,8 @@ WindowPortMus::RequestCompositorFrameSink(
cc::mojom::MojoCompositorFrameSinkClientRequest client_request =
mojo::MakeRequest(&client);
auto compositor_frame_sink = base::MakeUnique<ui::ClientCompositorFrameSink>(
- std::move(context_provider), gpu_memory_buffer_manager,
- std::move(sink_info), std::move(client_request),
+ std::move(context_provider), nullptr, gpu_memory_buffer_manager, nullptr,
+ nullptr, std::move(sink_info), std::move(client_request),
window_tree_client_->enable_surface_synchronization_);
window_tree_client_->AttachCompositorFrameSink(
server_id(), std::move(sink_request), std::move(client));

Powered by Google App Engine
This is Rietveld 408576698