| Index: Source/core/animation/InterpolableValue.cpp
|
| diff --git a/Source/core/animation/InterpolableValue.cpp b/Source/core/animation/InterpolableValue.cpp
|
| index cd132abed93fe353b893ca20a458fb7be1902cb1..85e9687a6e7c017da8b5dea517f1c5fbcc475b58 100644
|
| --- a/Source/core/animation/InterpolableValue.cpp
|
| +++ b/Source/core/animation/InterpolableValue.cpp
|
| @@ -7,8 +7,6 @@
|
|
|
| namespace blink {
|
|
|
| -DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(InterpolableValue);
|
| -
|
| void InterpolableNumber::interpolate(const InterpolableValue &to, const double progress, InterpolableValue& result) const
|
| {
|
| const InterpolableNumber& toNumber = toInterpolableNumber(to);
|
| @@ -61,12 +59,6 @@ void InterpolableList::scaleAndAdd(double scale, const InterpolableValue& other)
|
| m_values[i]->scaleAndAdd(scale, *otherList.m_values[i]);
|
| }
|
|
|
| -DEFINE_TRACE(InterpolableList)
|
| -{
|
| - visitor->trace(m_values);
|
| - InterpolableValue::trace(visitor);
|
| -}
|
| -
|
| void InterpolableAnimatableValue::interpolate(const InterpolableValue& to, const double progress, InterpolableValue& result) const
|
| {
|
| const InterpolableAnimatableValue& toValue = toInterpolableAnimatableValue(to);
|
| @@ -78,10 +70,4 @@ void InterpolableAnimatableValue::interpolate(const InterpolableValue& to, const
|
| resultValue.m_value = AnimatableValue::interpolate(m_value.get(), toValue.m_value.get(), progress);
|
| }
|
|
|
| -DEFINE_TRACE(InterpolableAnimatableValue)
|
| -{
|
| - visitor->trace(m_value);
|
| - InterpolableValue::trace(visitor);
|
| -}
|
| -
|
| }
|
|
|