Index: Source/core/animation/ColorStyleInterpolationTest.cpp |
diff --git a/Source/core/animation/ColorStyleInterpolationTest.cpp b/Source/core/animation/ColorStyleInterpolationTest.cpp |
index 2cf4a04b425ddcc9a39c6073efde1c43ffeb4947..5f6b49f6d09d3f953c353a6cc6dbfd629a1ae192 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 PassOwnPtr<InterpolableValue> colorToInterpolableValue(const CSSValue& value) |
{ |
return ColorStyleInterpolation::colorToInterpolableValue(value); |
} |
@@ -71,7 +71,7 @@ TEST_F(AnimationColorStyleInterpolationTest, ValueIDColor) |
TEST_F(AnimationColorStyleInterpolationTest, Interpolation) |
{ |
- RefPtrWillBeRawPtr<Interpolation> interpolation = ColorStyleInterpolation::create( |
+ RefPtr<Interpolation> interpolation = ColorStyleInterpolation::create( |
*CSSPrimitiveValue::createColor(makeRGBA(0, 0, 0, 255)), |
*CSSPrimitiveValue::createColor(makeRGBA(255, 255, 255, 255)), |
CSSPropertyColor |