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

Unified Diff: Source/core/svg/SVGAltGlyphElement.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/SVGAltGlyphElement.cpp
diff --git a/Source/core/svg/SVGAltGlyphElement.cpp b/Source/core/svg/SVGAltGlyphElement.cpp
index fd8d422430a75547742aea50f00bb65b7b83b15e..1f822f5f68ea8c322803ae74acd5cd0875dee078 100644
--- a/Source/core/svg/SVGAltGlyphElement.cpp
+++ b/Source/core/svg/SVGAltGlyphElement.cpp
@@ -82,9 +82,9 @@ bool SVGAltGlyphElement::childShouldCreateRenderer(const NodeRenderingContext& c
return false;
}
-RenderObject* SVGAltGlyphElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* SVGAltGlyphElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderSVGTSpan(this);
+ return new RenderSVGTSpan(this);
}
bool SVGAltGlyphElement::hasValidGlyphElements(Vector<String>& glyphNames) const

Powered by Google App Engine
This is Rietveld 408576698