Index: Source/core/animation/LengthStyleInterpolationTest.cpp |
diff --git a/Source/core/animation/LengthStyleInterpolationTest.cpp b/Source/core/animation/LengthStyleInterpolationTest.cpp |
index 50e8f0e34b2cd4e88c33495feee0ff159e22bfcc..d89505efda48ff55afbebd3c75c9cfb20f1c6ab5 100644 |
--- a/Source/core/animation/LengthStyleInterpolationTest.cpp |
+++ b/Source/core/animation/LengthStyleInterpolationTest.cpp |
@@ -16,12 +16,12 @@ class AnimationLengthStyleInterpolationTest : public ::testing::Test { |
protected: |
static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthToInterpolableValue(const CSSValue& value) |
{ |
- return LengthStyleInterpolation::lengthToInterpolableValue(value); |
+ return LengthStyleInterpolation::toInterpolableValue(value); |
} |
static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLength(InterpolableValue* value, InterpolationRange range) |
{ |
- return LengthStyleInterpolation::interpolableValueToLength(value, range); |
+ return LengthStyleInterpolation::fromInterpolableValue(*value, range); |
} |
static PassRefPtrWillBeRawPtr<CSSValue> roundTrip(PassRefPtrWillBeRawPtr<CSSValue> value) |