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

Unified Diff: components/viz/frame_sinks/gpu_compositor_frame_sink.cc

Issue 2720803002: Pass returned resources to DidReceiveCompositorFrameAck (Closed)
Patch Set: c Created 3 years, 8 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: components/viz/frame_sinks/gpu_compositor_frame_sink.cc
diff --git a/components/viz/frame_sinks/gpu_compositor_frame_sink.cc b/components/viz/frame_sinks/gpu_compositor_frame_sink.cc
index f3240e8b36d3a30e142bd5839f62802695c8db88..27d07d61c01c71c98ec325a7020f79debe73361b 100644
--- a/components/viz/frame_sinks/gpu_compositor_frame_sink.cc
+++ b/components/viz/frame_sinks/gpu_compositor_frame_sink.cc
@@ -55,9 +55,10 @@ void GpuCompositorFrameSink::BeginFrameDidNotSwap(
support_->BeginFrameDidNotSwap(begin_frame_ack);
}
-void GpuCompositorFrameSink::DidReceiveCompositorFrameAck() {
+void GpuCompositorFrameSink::DidReceiveCompositorFrameAck(
+ const cc::ReturnedResourceArray& resources) {
if (client_)
- client_->DidReceiveCompositorFrameAck();
+ client_->DidReceiveCompositorFrameAck(resources);
}
void GpuCompositorFrameSink::ClaimTemporaryReference(

Powered by Google App Engine
This is Rietveld 408576698