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

Unified Diff: content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc

Issue 2493223002: Change exo::SurfaceFactoryOwner to exo::ExoCompositorFrameSink (Closed)
Patch Set: Moved CompositorFrameSink implementation details in to CompositorFrameSinkSupport; addressed commen… Created 4 years 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: content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
diff --git a/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc b/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
index f938e13cbe675323dea77851b1fc51a5e345bd64..05e460f151d34dcb7a21e27e821746a7966362c6 100644
--- a/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
+++ b/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
@@ -64,6 +64,19 @@ void OffscreenCanvasCompositorFrameSink::EvictFrame() {
NOTIMPLEMENTED();
}
+void OffscreenCanvasCompositorFrameSink::Require(
+ const cc::LocalFrameId& local_frame_id,
+ const cc::SurfaceSequence& sequence) {
+ // TODO(staraz): Implement this.
+ NOTIMPLEMENTED();
+}
+
+void OffscreenCanvasCompositorFrameSink::Satisfy(
+ const cc::SurfaceSequence& sequence) {
+ // TODO(staraz): Implement this.
+ NOTIMPLEMENTED();
+}
+
void OffscreenCanvasCompositorFrameSink::ReturnResources(
const cc::ReturnedResourceArray& resources) {
if (resources.empty())

Powered by Google App Engine
This is Rietveld 408576698