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

Unified Diff: Source/core/html/HTMLDetailsElement.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/html/HTMLDetailsElement.cpp
diff --git a/Source/core/html/HTMLDetailsElement.cpp b/Source/core/html/HTMLDetailsElement.cpp
index 1c5620f944ccd1a8e95de4ae91e9962d4c396cdd..e5d249f25eb6949a8a232eda80d0d4ef1b850d9b 100644
--- a/Source/core/html/HTMLDetailsElement.cpp
+++ b/Source/core/html/HTMLDetailsElement.cpp
@@ -55,9 +55,9 @@ HTMLDetailsElement::HTMLDetailsElement(const QualifiedName& tagName, Document* d
ScriptWrappable::init(this);
}
-RenderObject* HTMLDetailsElement::createRenderer(RenderArena* arena, RenderStyle*)
+RenderObject* HTMLDetailsElement::createRenderer(RenderStyle*)
{
- return new (arena) RenderBlock(this);
+ return new RenderBlock(this);
}
void HTMLDetailsElement::didAddUserAgentShadowRoot(ShadowRoot* root)

Powered by Google App Engine
This is Rietveld 408576698