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

Unified Diff: Source/core/html/FormDataList.cpp

Issue 1102253002: Oilpan: keep FormData on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/core/html/FormDataList.h ('k') | Source/core/loader/BeaconLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/FormDataList.cpp
diff --git a/Source/core/html/FormDataList.cpp b/Source/core/html/FormDataList.cpp
index cdc658aeee891ac506d5862fec2359ce37fe18f2..e4f62cfab4f24738d11e3f3a23bbed8cb6e067f3 100644
--- a/Source/core/html/FormDataList.cpp
+++ b/Source/core/html/FormDataList.cpp
@@ -28,8 +28,6 @@
namespace blink {
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(FormDataList);
-
FormDataList::FormDataList(const WTF::TextEncoding& c)
: m_encoding(c)
{
@@ -94,9 +92,9 @@ FormDataList::Entry FormDataList::getEntry(size_t index) const
return itemsToEntry(key, value);
}
-WillBeHeapVector<FormDataList::Entry> FormDataList::getAll(const String& key) const
+HeapVector<FormDataList::Entry> FormDataList::getAll(const String& key) const
{
- WillBeHeapVector<FormDataList::Entry> matches;
+ HeapVector<FormDataList::Entry> matches;
const CString keyData = encodeAndNormalize(key);
const FormDataListItems& items = this->items();
« no previous file with comments | « Source/core/html/FormDataList.h ('k') | Source/core/loader/BeaconLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698