Index: Source/core/svg/SVGPathElement.cpp |
diff --git a/Source/core/svg/SVGPathElement.cpp b/Source/core/svg/SVGPathElement.cpp |
index 484044ff353b2614f736fed2efaee4161ae63f53..2f57d725e3911fb82dec782595c12d3068efbedb 100644 |
--- a/Source/core/svg/SVGPathElement.cpp |
+++ b/Source/core/svg/SVGPathElement.cpp |
@@ -401,10 +401,10 @@ FloatRect SVGPathElement::getBBox(StyleUpdateStrategy styleUpdateStrategy) |
return renderer->path().boundingRect(); |
} |
-RenderObject* SVGPathElement::createRenderer(RenderArena* arena, RenderStyle*) |
+RenderObject* SVGPathElement::createRenderer(RenderStyle*) |
{ |
// By default, any subclass is expected to do path-based drawing |
- return new (arena) RenderSVGPath(this); |
+ return new RenderSVGPath(this); |
} |
} |