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

Unified Diff: services/ui/public/cpp/window_compositor_frame_sink.cc

Issue 2544103002: Added MojoCompositorFrameSink::EvictFrame() and MojoCompositorFrameSinkClient::WillDrawSurface() (Closed)
Patch Set: Addressed a comment 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: services/ui/public/cpp/window_compositor_frame_sink.cc
diff --git a/services/ui/public/cpp/window_compositor_frame_sink.cc b/services/ui/public/cpp/window_compositor_frame_sink.cc
index d75665004f61497d7f4ecf8e2471bb068fa84def..4c2e863522bd49e01f4564baf7779515532f7bb8 100644
--- a/services/ui/public/cpp/window_compositor_frame_sink.cc
+++ b/services/ui/public/cpp/window_compositor_frame_sink.cc
@@ -113,6 +113,11 @@ void WindowCompositorFrameSink::ReclaimResources(
client_->ReclaimResources(resources);
}
+void WindowCompositorFrameSink::WillDrawSurface() {
+ // TODO(fsamuel, staraz): Implement this.
+ NOTIMPLEMENTED();
+}
+
void WindowCompositorFrameSink::OnNeedsBeginFrames(bool needs_begin_frames) {
compositor_frame_sink_->SetNeedsBeginFrame(needs_begin_frames);
}

Powered by Google App Engine
This is Rietveld 408576698