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

Unified Diff: cc/surfaces/display.cc

Issue 1821863002: Hook up ui::Compositor to Display's BeginFrameSource (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit test compilation Created 4 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: cc/surfaces/display.cc
diff --git a/cc/surfaces/display.cc b/cc/surfaces/display.cc
index 6866cedc9cf27654d5e0ebcee75cbda329dae739..31d4a5a6ddcb72679440c60ea97b45b422bc88f2 100644
--- a/cc/surfaces/display.cc
+++ b/cc/surfaces/display.cc
@@ -281,6 +281,10 @@ void Display::CommitVSyncParameters(base::TimeTicks timebase,
client_->CommitVSyncParameters(timebase, interval);
}
+void Display::SetBeginFrameSource(BeginFrameSource* source) {
+ NOTREACHED();
enne (OOO) 2016/03/22 21:05:18 This is a bit awkward, but because the BrowserComp
sunnyps 2016/03/22 21:52:44 Can't we move the BFS from the display scheduler t
enne (OOO) 2016/03/22 22:16:20 The BFS is currently in the OnScreenDisplayClient
+}
+
void Display::SetMemoryPolicy(const ManagedMemoryPolicy& policy) {
client_->SetMemoryPolicy(policy);
}

Powered by Google App Engine
This is Rietveld 408576698