| 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);
|
| -}
|
| -
|
| }
|
|
|