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

Unified Diff: Source/core/animation/Interpolation.cpp

Issue 210783002: Oilpan: Move Interpolation's hierarchy to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « Source/core/animation/Interpolation.h ('k') | Source/core/animation/InterpolationEffect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Interpolation.cpp
diff --git a/Source/core/animation/Interpolation.cpp b/Source/core/animation/Interpolation.cpp
index 192fd2493e1b87f5e1ae19e2a12cdae140986ee2..4ceda726ea4a40398126d44d1fcc976f9e6e8524 100644
--- a/Source/core/animation/Interpolation.cpp
+++ b/Source/core/animation/Interpolation.cpp
@@ -54,10 +54,20 @@ void Interpolation::interpolate(int iteration, double fraction) const
}
}
+void StyleInterpolation::trace(Visitor* visitor)
+{
+ Interpolation::trace(visitor);
+}
+
void LegacyStyleInterpolation::apply(StyleResolverState& state) const
{
AnimatableValue* value = currentValue();
AnimatedStyleBuilder::applyProperty(m_id, state, value);
}
+void LegacyStyleInterpolation::trace(Visitor* visitor)
+{
+ StyleInterpolation::trace(visitor);
+}
+
}
« no previous file with comments | « Source/core/animation/Interpolation.h ('k') | Source/core/animation/InterpolationEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698