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

Unified Diff: webkit/compositor_bindings/WebLayerImpl.cpp

Issue 10690168: Aura: Resize locks with --ui-enable-threaded-compositing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved needing to kick a frame logic up to RWHVA from Compositor. 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
« ui/compositor/compositor.cc ('K') | « webkit/compositor_bindings/WebLayerImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/WebLayerImpl.cpp
diff --git a/webkit/compositor_bindings/WebLayerImpl.cpp b/webkit/compositor_bindings/WebLayerImpl.cpp
index a1c6e3ec1f3e345f81bf9360b4ace03afe276173..27c566de3cb89408d6296c4dd4f31583a4cd4809 100644
--- a/webkit/compositor_bindings/WebLayerImpl.cpp
+++ b/webkit/compositor_bindings/WebLayerImpl.cpp
@@ -338,6 +338,16 @@ void WebLayerImpl::setForceRenderSurface(bool forceRenderSurface)
m_layer->setForceRenderSurface(forceRenderSurface);
}
+void WebLayerImpl::setDeferUpdates(bool deferUpdates)
+{
+ m_layer->setDeferUpdates(deferUpdates);
+}
+
+bool WebLayerImpl::deferUpdates()
+{
+ return m_layer->deferUpdates();
+}
+
void WebLayerImpl::setScrollPosition(WebPoint position)
{
m_layer->setScrollPosition(convert(position));
« ui/compositor/compositor.cc ('K') | « webkit/compositor_bindings/WebLayerImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698