Index: Source/core/rendering/svg/SVGRenderSupport.cpp |
diff --git a/Source/core/rendering/svg/SVGRenderSupport.cpp b/Source/core/rendering/svg/SVGRenderSupport.cpp |
index 8949527810815fb10dd8f4583d1a76f41640babc..55f55042ff99d18079310602f844b41024978bb7 100644 |
--- a/Source/core/rendering/svg/SVGRenderSupport.cpp |
+++ b/Source/core/rendering/svg/SVGRenderSupport.cpp |
@@ -352,7 +352,7 @@ void SVGRenderSupport::applyStrokeStyleToContext(GraphicsContext* context, const |
context->setLineJoin(svgStyle.joinStyle()); |
context->setMiterLimit(svgStyle.strokeMiterLimit()); |
- RefPtr<SVGLengthList> dashes = svgStyle.strokeDashArray(); |
+ RefPtrWillBeRawPtr<SVGLengthList> dashes = svgStyle.strokeDashArray(); |
if (dashes->isEmpty()) |
return; |
@@ -381,7 +381,7 @@ void SVGRenderSupport::applyStrokeStyleToStrokeData(StrokeData* strokeData, cons |
strokeData->setLineJoin(svgStyle.joinStyle()); |
strokeData->setMiterLimit(svgStyle.strokeMiterLimit()); |
- RefPtr<SVGLengthList> dashes = svgStyle.strokeDashArray(); |
+ RefPtrWillBeRawPtr<SVGLengthList> dashes = svgStyle.strokeDashArray(); |
if (dashes->isEmpty()) |
return; |