Index: Source/core/animation/animatable/AnimatableSVGPaint.cpp |
diff --git a/Source/core/animation/animatable/AnimatableSVGPaint.cpp b/Source/core/animation/animatable/AnimatableSVGPaint.cpp |
index c82e184c798f18e064ef619945e37fbd92805a8e..c51be60da2a41c578f1b3e649d52aa646ffa5750 100644 |
--- a/Source/core/animation/animatable/AnimatableSVGPaint.cpp |
+++ b/Source/core/animation/animatable/AnimatableSVGPaint.cpp |
@@ -46,7 +46,7 @@ PassRefPtr<AnimatableValue> AnimatableSVGPaint::interpolateTo(const AnimatableVa |
return defaultInterpolateTo(this, value, fraction); |
const AnimatableSVGPaint* svgPaint = toAnimatableSVGPaint(value); |
- RefPtrWillBeRawPtr<AnimatableColor> color = toAnimatableColor(AnimatableValue::interpolate(m_color.get(), svgPaint->m_color.get(), fraction).get()); |
+ RefPtr<AnimatableColor> color = toAnimatableColor(AnimatableValue::interpolate(m_color.get(), svgPaint->m_color.get(), fraction).get()); |
if (fraction < 0.5) |
return create(paintType(), visitedLinkPaintType(), color, uri(), visitedLinkURI()); |
return create(svgPaint->paintType(), svgPaint->visitedLinkPaintType(), color, svgPaint->uri(), svgPaint->visitedLinkURI()); |