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

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

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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: Source/core/animation/DeferredLegacyStyleInterpolation.cpp
diff --git a/Source/core/animation/DeferredLegacyStyleInterpolation.cpp b/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
index a6b0cfd28fa2e60e8f2be29b3a5d62646e05b417..b8cd3f6f7098c48ab0832afa1780001886cf58c6 100644
--- a/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
+++ b/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
@@ -23,8 +23,8 @@ namespace blink {
void DeferredLegacyStyleInterpolation::apply(StyleResolverState& state) const
{
if (m_outdated || !state.element()->elementAnimations() || !state.element()->elementAnimations()->isAnimationStyleChange()) {
- RefPtrWillBeRawPtr<AnimatableValue> startAnimatableValue;
- RefPtrWillBeRawPtr<AnimatableValue> endAnimatableValue;
+ RefPtr<AnimatableValue> startAnimatableValue;
+ RefPtr<AnimatableValue> endAnimatableValue;
// Snapshot underlying values for neutral keyframes first because non-neutral keyframes will mutate the StyleResolverState.
if (!m_endCSSValue) {
@@ -148,12 +148,4 @@ bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const C
|| interpolationRequiresStyleResolve(*quad.left());
}
-DEFINE_TRACE(DeferredLegacyStyleInterpolation)
-{
- visitor->trace(m_startCSSValue);
- visitor->trace(m_endCSSValue);
- visitor->trace(m_innerInterpolation);
- StyleInterpolation::trace(visitor);
-}
-
}

Powered by Google App Engine
This is Rietveld 408576698