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

Unified Diff: Source/core/svg/SVGUseElement.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/SVGUseElement.cpp
diff --git a/Source/core/svg/SVGUseElement.cpp b/Source/core/svg/SVGUseElement.cpp
index caf330c1720a36e452dabd937dde638a8ab5aecd..ebffdd950e7f2e869ab6518c77e83ec0a24e9049 100644
--- a/Source/core/svg/SVGUseElement.cpp
+++ b/Source/core/svg/SVGUseElement.cpp
@@ -525,9 +525,9 @@ void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target)
#endif
}
-RenderObject* SVGUseElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* SVGUseElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderSVGTransformableContainer(this);
+ return new RenderSVGTransformableContainer(this);
}
static bool isDirectReference(const Node* node)

Powered by Google App Engine
This is Rietveld 408576698