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

Unified Diff: Source/web/WebSearchableFormData.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/modules/fetch/Response.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSearchableFormData.cpp
diff --git a/Source/web/WebSearchableFormData.cpp b/Source/web/WebSearchableFormData.cpp
index d3bff706654828cc47a61fa786d92c3078c1eeba..e6cb9e2db0347c8305e0ddf7b71ba7b437ff770c 100644
--- a/Source/web/WebSearchableFormData.cpp
+++ b/Source/web/WebSearchableFormData.cpp
@@ -210,7 +210,7 @@ bool buildSearchString(const HTMLFormElement* form, Vector<char>* encodedString,
if (control->isDisabledFormControl() || control->name().isNull())
continue;
- RefPtrWillBeRawPtr<FormDataList> dataList = FormDataList::create(*encoding);
+ FormDataList* dataList = FormDataList::create(*encoding);
if (!control->appendFormData(*dataList, false))
continue;
« no previous file with comments | « Source/modules/fetch/Response.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698