| Index: Source/core/animation/LengthPairStyleInterpolationTest.cpp
|
| diff --git a/Source/core/animation/LengthPairStyleInterpolationTest.cpp b/Source/core/animation/LengthPairStyleInterpolationTest.cpp
|
| index b7856aff8b3d5ad34e79464ba641497b34278844..2f80e16a67dca04c0225618e09412b92f056d17d 100644
|
| --- a/Source/core/animation/LengthPairStyleInterpolationTest.cpp
|
| +++ b/Source/core/animation/LengthPairStyleInterpolationTest.cpp
|
| @@ -17,7 +17,7 @@ namespace blink {
|
| class LengthPairStyleInterpolationTest : public ::testing::Test {
|
|
|
| protected:
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthPairToInterpolableValue(const CSSValue& value)
|
| + static InterpolableValue* lengthPairToInterpolableValue(const CSSValue& value)
|
| {
|
| return LengthPairStyleInterpolation::lengthPairToInterpolableValue(value);
|
| }
|
| @@ -29,7 +29,7 @@ protected:
|
|
|
| static PassRefPtrWillBeRawPtr<CSSValue> roundTrip(PassRefPtrWillBeRawPtr<CSSValue> value, InterpolationRange range)
|
| {
|
| - return interpolableValueToLengthPair(lengthPairToInterpolableValue(*value).get(), range);
|
| + return interpolableValueToLengthPair(lengthPairToInterpolableValue(*value), range);
|
| }
|
|
|
| static void testPrimitiveValue(RefPtrWillBeRawPtr<CSSValue> value, double first, double second, CSSPrimitiveValue::UnitType unitType)
|
|
|