Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Unified Diff: Source/core/animation/animatable/AnimatableSVGPaint.cpp

Issue 1302233010: Oilpan: Follow-up fix after r201698 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698