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

Unified Diff: components/display_compositor/gpu_compositor_frame_sink.cc

Issue 2755463002: [cc] Fix CompositorFrameSinkSupport BeginFrameAck interface. (Closed)
Patch Set: sync 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: components/display_compositor/gpu_compositor_frame_sink.cc
diff --git a/components/display_compositor/gpu_compositor_frame_sink.cc b/components/display_compositor/gpu_compositor_frame_sink.cc
index c572eb5709398dfa7d5756a0499baa90a234c768..95fc477ea6cdde409638041e100f4ac646f958e8 100644
--- a/components/display_compositor/gpu_compositor_frame_sink.cc
+++ b/components/display_compositor/gpu_compositor_frame_sink.cc
@@ -50,6 +50,11 @@ void GpuCompositorFrameSink::SubmitCompositorFrame(
support_->SubmitCompositorFrame(local_surface_id, std::move(frame));
}
+void GpuCompositorFrameSink::BeginFrameDidNotSwap(
+ const cc::BeginFrameAck& begin_frame_ack) {
+ support_->BeginFrameDidNotSwap(begin_frame_ack);
+}
+
void GpuCompositorFrameSink::DidReceiveCompositorFrameAck() {
if (client_)
client_->DidReceiveCompositorFrameAck();

Powered by Google App Engine
This is Rietveld 408576698