Chromium Code Reviews

Unified Diff: Source/core/svg/SVGMarkerElement.cpp

Issue 16896019: Replace RenderArena with PartitionAlloc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/svg/SVGMarkerElement.cpp
diff --git a/Source/core/svg/SVGMarkerElement.cpp b/Source/core/svg/SVGMarkerElement.cpp
index f6eeedc46f18369e312813f3c2834b6f1cd0acaa..cc90792bdf8b2911b3aaf4ad3d28d1a75b438067 100644
--- a/Source/core/svg/SVGMarkerElement.cpp
+++ b/Source/core/svg/SVGMarkerElement.cpp
@@ -212,9 +212,9 @@ void SVGMarkerElement::setOrientToAngle(const SVGAngle& angle)
svgAttributeChanged(orientAnglePropertyInfo()->attributeName);
}
-RenderObject* SVGMarkerElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* SVGMarkerElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderSVGResourceMarker(this);
+ return new RenderSVGResourceMarker(this);
}
bool SVGMarkerElement::selfHasRelativeLengths() const

Powered by Google App Engine