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

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
This is Rietveld 408576698