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

Unified Diff: sky/engine/core/animation/animatable/AnimatableValueKeyframe.cpp

Issue 723253004: Remove tons of OILPAN. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: sky/engine/core/animation/animatable/AnimatableValueKeyframe.cpp
diff --git a/sky/engine/core/animation/animatable/AnimatableValueKeyframe.cpp b/sky/engine/core/animation/animatable/AnimatableValueKeyframe.cpp
index bae135748fe4fec792af21b416c82420be6d74a3..50829b7cfdfe2dec70975ac67686b1179d339711 100644
--- a/sky/engine/core/animation/animatable/AnimatableValueKeyframe.cpp
+++ b/sky/engine/core/animation/animatable/AnimatableValueKeyframe.cpp
@@ -36,14 +36,6 @@ PassOwnPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyframe::createPr
return adoptPtr(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property), composite()));
}
-void AnimatableValueKeyframe::trace(Visitor* visitor)
-{
-#if ENABLE(OILPAN)
- visitor->trace(m_propertyValues);
-#endif
- Keyframe::trace(visitor);
-}
-
AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, const AnimatableValue* value, AnimationEffect::CompositeOperation op)
: Keyframe::PropertySpecificKeyframe(offset, easing, op)
, m_value(const_cast<AnimatableValue*>(value))
@@ -73,10 +65,4 @@ PassOwnPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyframe::Property
return adoptPtr(new AnimatableValueKeyframe::PropertySpecificKeyframe(offset, easing, AnimatableValue::neutralValue(), AnimationEffect::CompositeAdd));
}
-void AnimatableValueKeyframe::PropertySpecificKeyframe::trace(Visitor* visitor)
-{
- visitor->trace(m_value);
- Keyframe::PropertySpecificKeyframe::trace(visitor);
-}
-
}
« no previous file with comments | « sky/engine/core/animation/animatable/AnimatableValueKeyframe.h ('k') | sky/engine/core/animation/css/CSSAnimations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698