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

Unified Diff: Source/core/svg/SVGCircleElement.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/SVGCircleElement.cpp
diff --git a/Source/core/svg/SVGCircleElement.cpp b/Source/core/svg/SVGCircleElement.cpp
index 813bf08c5b82851f592b1e72e7a593fd28126a41..032c7a0540e067538934ce3757ad587e9f355951 100644
--- a/Source/core/svg/SVGCircleElement.cpp
+++ b/Source/core/svg/SVGCircleElement.cpp
@@ -140,9 +140,9 @@ bool SVGCircleElement::selfHasRelativeLengths() const
|| r().isRelative();
}
-RenderObject* SVGCircleElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* SVGCircleElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderSVGEllipse(this);
+ return new RenderSVGEllipse(this);
}
}

Powered by Google App Engine
This is Rietveld 408576698