| Index: sky/engine/core/animation/InterpolableValue.cpp
|
| diff --git a/sky/engine/core/animation/InterpolableValue.cpp b/sky/engine/core/animation/InterpolableValue.cpp
|
| index b276ef803685092d7b2ddcc06349584bec1a5513..63be961232e0f846a4e194b781e084388774127c 100644
|
| --- a/sky/engine/core/animation/InterpolableValue.cpp
|
| +++ b/sky/engine/core/animation/InterpolableValue.cpp
|
| @@ -48,14 +48,6 @@ PassOwnPtr<InterpolableValue> InterpolableList::interpolate(const InterpolableVa
|
| return result.release();
|
| }
|
|
|
| -void InterpolableList::trace(Visitor* visitor)
|
| -{
|
| -#if ENABLE_OILPAN
|
| - visitor->trace(m_values);
|
| -#endif
|
| - InterpolableValue::trace(visitor);
|
| -}
|
| -
|
| PassOwnPtr<InterpolableValue> InterpolableAnimatableValue::interpolate(const InterpolableValue &other, const double percentage) const
|
| {
|
| const InterpolableAnimatableValue& otherValue = toInterpolableAnimatableValue(other);
|
| @@ -66,10 +58,4 @@ PassOwnPtr<InterpolableValue> InterpolableAnimatableValue::interpolate(const Int
|
| return create(AnimatableValue::interpolate(m_value.get(), otherValue.m_value.get(), percentage));
|
| }
|
|
|
| -void InterpolableAnimatableValue::trace(Visitor* visitor)
|
| -{
|
| - visitor->trace(m_value);
|
| - InterpolableValue::trace(visitor);
|
| -}
|
| -
|
| }
|
|
|