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

Unified Diff: cc/layer_tree_host.cc

Issue 10690168: Aura: Resize locks with --ui-enable-threaded-compositing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: With a unittest (and minor compile fixes for other platforms). Created 8 years, 2 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/layer_tree_host.cc
diff --git a/cc/layer_tree_host.cc b/cc/layer_tree_host.cc
index ebc998ed856ed26077d979a67eb4c0e403b75039..b6aff3c28824fd635cd51a2ee6c7438fa0131edd 100644
--- a/cc/layer_tree_host.cc
+++ b/cc/layer_tree_host.cc
@@ -343,6 +343,15 @@ void LayerTreeHost::finishAllRendering()
m_proxy->finishAllRendering();
}
+void LayerTreeHost::setDeferCommits(bool deferCommits)
+{
+ m_proxy->setDeferCommits(deferCommits);
+}
+
+void LayerTreeHost::didDeferCommit()
+{
+}
+
void LayerTreeHost::renderingStats(RenderingStats* stats) const
{
*stats = m_renderingStats;
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/layer_tree_host_unittest.cc » ('j') | cc/thread_proxy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698