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

Unified Diff: Source/core/rendering/RenderLayer.cpp

Issue 474683003: Not for review - Rebase of crrev.com/62833003 Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 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 | « Source/core/rendering/RenderLayer.h ('k') | Source/core/rendering/compositing/CompositedLayerMapping.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderLayer.cpp
diff --git a/Source/core/rendering/RenderLayer.cpp b/Source/core/rendering/RenderLayer.cpp
index ba9c9160db2976b1d391d06894bc2f66cab7d88d..31214d5b11c503a3d0db4f496b9f0add2e882ff6 100644
--- a/Source/core/rendering/RenderLayer.cpp
+++ b/Source/core/rendering/RenderLayer.cpp
@@ -2482,6 +2482,20 @@ void RenderLayer::setGroupedMapping(CompositedLayerMapping* groupedMapping, bool
m_groupedMapping->setNeedsGraphicsLayerUpdate(GraphicsLayerUpdateSubtree);
}
+void RenderLayer::unbindAnimatedProperties()
+{
+ ASSERT(isAllowedToQueryCompositingState());
+ if (m_compositedLayerMapping)
+ m_compositedLayerMapping->unbindAnimatedProperties();
+}
+
+void RenderLayer::bindAnimatedProperties(const Vector<String>& properties)
+{
+ ASSERT(isAllowedToQueryCompositingState());
+ if (m_compositedLayerMapping)
+ m_compositedLayerMapping->bindAnimatedProperties(properties);
+}
+
bool RenderLayer::hasCompositedMask() const
{
return m_compositedLayerMapping && m_compositedLayerMapping->hasMaskLayer();
« no previous file with comments | « Source/core/rendering/RenderLayer.h ('k') | Source/core/rendering/compositing/CompositedLayerMapping.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698