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

Unified Diff: Source/core/html/SearchInputType.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/SearchInputType.cpp
diff --git a/Source/core/html/SearchInputType.cpp b/Source/core/html/SearchInputType.cpp
index 7d21d26f17a7275104f2bff92c34250691fd61ea..b56dadccc9c76932a2f7460d4bb8160fb8263961 100644
--- a/Source/core/html/SearchInputType.cpp
+++ b/Source/core/html/SearchInputType.cpp
@@ -62,9 +62,9 @@ void SearchInputType::attach()
observeFeatureIfVisible(UseCounter::InputTypeSearch);
}
-RenderObject* SearchInputType::createRenderer(RenderArena* arena, RenderStyle*) const
+RenderObject* SearchInputType::createRenderer(RenderStyle*) const
{
- return new (arena) RenderSearchField(element());
+ return new RenderSearchField(element());
}
const AtomicString& SearchInputType::formControlType() const

Powered by Google App Engine
This is Rietveld 408576698