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

Unified Diff: Source/core/svg/SVGMaskElement.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/SVGMaskElement.cpp
diff --git a/Source/core/svg/SVGMaskElement.cpp b/Source/core/svg/SVGMaskElement.cpp
index c9a17ade950afb5f865ac117478066b4c0ca59fe..01f8a5b2f6861f11a085dac076fd9bd6c06c8ef1 100644
--- a/Source/core/svg/SVGMaskElement.cpp
+++ b/Source/core/svg/SVGMaskElement.cpp
@@ -154,9 +154,9 @@ void SVGMaskElement::childrenChanged(bool changedByParser, Node* beforeChange, N
object->setNeedsLayout(true);
}
-RenderObject* SVGMaskElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* SVGMaskElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderSVGResourceMasker(this);
+ return new RenderSVGResourceMasker(this);
}
bool SVGMaskElement::selfHasRelativeLengths() const

Powered by Google App Engine
This is Rietveld 408576698