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

Unified Diff: Source/core/animation/InterpolableValue.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/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);
-}
-
}

Powered by Google App Engine
This is Rietveld 408576698