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

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: Address jamesr@ comments. 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
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/proxy.h » ('j') | cc/single_thread_proxy.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_tree_host.cc
diff --git a/cc/layer_tree_host.cc b/cc/layer_tree_host.cc
index ebc998ed856ed26077d979a67eb4c0e403b75039..99ab8c990c575861c1a36651776c34c96ad5e2d0 100644
--- a/cc/layer_tree_host.cc
+++ b/cc/layer_tree_host.cc
@@ -340,9 +340,15 @@ void LayerTreeHost::finishAllRendering()
{
if (!m_rendererInitialized)
return;
+
jamesr 2012/10/24 19:34:27 spurious newline here, remove
jonathan.backer 2012/10/24 21:29:38 Done.
m_proxy->finishAllRendering();
}
+void LayerTreeHost::setDeferCommits(bool deferCommits)
+{
+ m_proxy->setDeferCommits(deferCommits);
+}
+
void LayerTreeHost::renderingStats(RenderingStats* stats) const
{
*stats = m_renderingStats;
« no previous file with comments | « cc/layer_tree_host.h ('k') | cc/proxy.h » ('j') | cc/single_thread_proxy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698