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

Unified Diff: Source/core/svg/SVGClipPathElement.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/SVGClipPathElement.cpp
diff --git a/Source/core/svg/SVGClipPathElement.cpp b/Source/core/svg/SVGClipPathElement.cpp
index 14524aa4230e9c88c33b3a9ff9faf534ef33702c..fec6cd2892b7d5694828d33d8f1773ccf6337d30 100644
--- a/Source/core/svg/SVGClipPathElement.cpp
+++ b/Source/core/svg/SVGClipPathElement.cpp
@@ -114,9 +114,9 @@ void SVGClipPathElement::childrenChanged(bool changedByParser, Node* beforeChang
object->setNeedsLayout(true);
}
-RenderObject* SVGClipPathElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* SVGClipPathElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderSVGResourceClipper(this);
+ return new RenderSVGResourceClipper(this);
}
}

Powered by Google App Engine
This is Rietveld 408576698