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

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

Issue 2551083003: Add Satisfy() and Require() to MojoCompositorFrameSink (Closed)
Patch Set: Rebase; changed LOG to DLOG 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 42515b52c32e942e0572f0952603620e7ed0b40c..e90ba3f4f5ea625d8246188d057a31959e6bbb8e 100644
--- a/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
+++ b/content/browser/renderer_host/offscreen_canvas_compositor_frame_sink.cc
@@ -74,6 +74,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