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

Unified Diff: content/renderer/render_thread_impl.cc

Issue 2921713002: Reland "Send FrameSwapMessageQueue's messages in QueueMessageSwapPromise" with fixes (Closed)
Patch Set: Don't pass to RCFS 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/gpu/renderer_compositor_frame_sink.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 875bb9d122c57b11c778ee54051e32798544e72e..a65ce0b906e1e28b70babf78f03e1bc76c47bc42 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -1930,7 +1930,7 @@ void RenderThreadImpl::RequestNewCompositorFrameSink(
callback.Run(base::MakeUnique<RendererCompositorFrameSink>(
routing_id, std::move(synthetic_begin_frame_source),
std::move(vulkan_context_provider), std::move(sink_info),
- std::move(client_request), std::move(frame_swap_message_queue)));
+ std::move(client_request)));
return;
}
}
@@ -1958,7 +1958,7 @@ void RenderThreadImpl::RequestNewCompositorFrameSink(
callback.Run(base::MakeUnique<RendererCompositorFrameSink>(
routing_id, std::move(synthetic_begin_frame_source), nullptr, nullptr,
nullptr, shared_bitmap_manager(), std::move(sink_info),
- std::move(client_request), std::move(frame_swap_message_queue)));
+ std::move(client_request)));
return;
}
@@ -2031,7 +2031,7 @@ void RenderThreadImpl::RequestNewCompositorFrameSink(
routing_id, std::move(synthetic_begin_frame_source),
std::move(context_provider), std::move(worker_context_provider),
GetGpuMemoryBufferManager(), nullptr, std::move(sink_info),
- std::move(client_request), std::move(frame_swap_message_queue))));
+ std::move(client_request))));
}
AssociatedInterfaceRegistry*
« no previous file with comments | « content/renderer/gpu/renderer_compositor_frame_sink.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698