| Index: Source/core/animation/ColorStyleInterpolationTest.cpp
|
| diff --git a/Source/core/animation/ColorStyleInterpolationTest.cpp b/Source/core/animation/ColorStyleInterpolationTest.cpp
|
| index 2cf4a04b425ddcc9a39c6073efde1c43ffeb4947..261abf7367f3fe39940fb2df0f80b6f8ef1e4326 100644
|
| --- a/Source/core/animation/ColorStyleInterpolationTest.cpp
|
| +++ b/Source/core/animation/ColorStyleInterpolationTest.cpp
|
| @@ -15,7 +15,7 @@ namespace blink {
|
|
|
| class AnimationColorStyleInterpolationTest : public ::testing::Test {
|
| protected:
|
| - static PassOwnPtrWillBeRawPtr<InterpolableValue> colorToInterpolableValue(const CSSValue& value)
|
| + static InterpolableValue* colorToInterpolableValue(const CSSValue& value)
|
| {
|
| return ColorStyleInterpolation::colorToInterpolableValue(value);
|
| }
|
| @@ -27,7 +27,7 @@ protected:
|
|
|
| static PassRefPtrWillBeRawPtr<CSSValue> roundTrip(PassRefPtrWillBeRawPtr<CSSValue> value)
|
| {
|
| - return interpolableValueToColor(colorToInterpolableValue(*value).get());
|
| + return interpolableValueToColor(colorToInterpolableValue(*value));
|
| }
|
|
|
| static void testPrimitiveValue(PassRefPtrWillBeRawPtr<CSSValue> value, RGBA32 rgbaValue)
|
| @@ -71,7 +71,7 @@ TEST_F(AnimationColorStyleInterpolationTest, ValueIDColor)
|
|
|
| TEST_F(AnimationColorStyleInterpolationTest, Interpolation)
|
| {
|
| - RefPtrWillBeRawPtr<Interpolation> interpolation = ColorStyleInterpolation::create(
|
| + Interpolation* interpolation = ColorStyleInterpolation::create(
|
| *CSSPrimitiveValue::createColor(makeRGBA(0, 0, 0, 255)),
|
| *CSSPrimitiveValue::createColor(makeRGBA(255, 255, 255, 255)),
|
| CSSPropertyColor
|
|
|