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

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

Issue 2903853002: Make RendererCompositorFrameSink derive from ClientCompositorFrameSink (Closed)
Patch Set: Add comments 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
« no previous file with comments | « content/renderer/mus/renderer_window_tree_client.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14ae20a368daca4d74ce4909e70545b361551f90..e32e47475a8cb426d9a432f6463c861794fde850 100644
--- a/ui/aura/mus/window_port_mus.cc
+++ b/ui/aura/mus/window_port_mus.cc
@@ -105,9 +105,10 @@ WindowPortMus::RequestCompositorFrameSink(
mojo::MakeRequest(&client);
constexpr bool enable_surface_synchronization = true;
auto compositor_frame_sink = base::MakeUnique<viz::ClientCompositorFrameSink>(
- std::move(context_provider), gpu_memory_buffer_manager,
- std::move(sink_info), std::move(client_request),
- enable_surface_synchronization);
+ std::move(context_provider), nullptr /* worker_context_provider */,
+ gpu_memory_buffer_manager, nullptr /* shared_bitmap_manager */,
+ nullptr /* synthetic_begin_frame_source */, std::move(sink_info),
+ std::move(client_request), enable_surface_synchronization);
window_tree_client_->AttachCompositorFrameSink(
server_id(), std::move(sink_request), std::move(client));
return std::move(compositor_frame_sink);
« no previous file with comments | « content/renderer/mus/renderer_window_tree_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698