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

Unified Diff: Source/core/xmlhttprequest/XMLHttpRequest.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/loader/FormSubmission.cpp ('k') | Source/modules/credentialmanager/Credential.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xmlhttprequest/XMLHttpRequest.cpp
diff --git a/Source/core/xmlhttprequest/XMLHttpRequest.cpp b/Source/core/xmlhttprequest/XMLHttpRequest.cpp
index 5d35dd7be30e2cc5f011bac6603c29375665de12..9ede5010afc5ecad6188a9f616aa2d97ef333ab8 100644
--- a/Source/core/xmlhttprequest/XMLHttpRequest.cpp
+++ b/Source/core/xmlhttprequest/XMLHttpRequest.cpp
@@ -848,7 +848,7 @@ void XMLHttpRequest::send(const ArrayBufferOrArrayBufferViewOrBlobOrDocumentOrSt
}
if (data.isFormData()) {
- send(data.getAsFormData().get(), exceptionState);
+ send(data.getAsFormData(), exceptionState);
return;
}
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/modules/credentialmanager/Credential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698