| Index: Source/core/animation/DoubleStyleInterpolationTest.cpp
|
| diff --git a/Source/core/animation/DoubleStyleInterpolationTest.cpp b/Source/core/animation/DoubleStyleInterpolationTest.cpp
|
| index 78662f8dfed8c19e14b08560344af61a6c76f62b..e23842883624fd1089076772b5004fbbd55fbdc6 100644
|
| --- a/Source/core/animation/DoubleStyleInterpolationTest.cpp
|
| +++ b/Source/core/animation/DoubleStyleInterpolationTest.cpp
|
| @@ -16,12 +16,12 @@ namespace blink {
|
|
|
| class AnimationDoubleStyleInterpolationTest : public ::testing::Test {
|
| protected:
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue& value)
|
| + static PassOwnPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue& value)
|
| {
|
| return DoubleStyleInterpolation::doubleToInterpolableValue(value);
|
| }
|
|
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue& value)
|
| + static PassOwnPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue& value)
|
| {
|
| return DoubleStyleInterpolation::motionRotationToInterpolableValue(value);
|
| }
|
| @@ -99,7 +99,7 @@ TEST_F(AnimationDoubleStyleInterpolationTest, AngleValue)
|
|
|
| TEST_F(AnimationDoubleStyleInterpolationTest, Clamping)
|
| {
|
| - RefPtrWillBeRawPtr<Interpolation> interpolableDouble = DoubleStyleInterpolation::create(
|
| + RefPtr<Interpolation> interpolableDouble = DoubleStyleInterpolation::create(
|
| *CSSPrimitiveValue::create(0, CSSPrimitiveValue::UnitType::Number),
|
| *CSSPrimitiveValue::create(0.6, CSSPrimitiveValue::UnitType::Number),
|
| CSSPropertyLineHeight,
|
|
|