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

Unified Diff: third_party/WebKit/Source/core/dom/URLSearchParams.cpp

Issue 1473243002: Clean up on URLSearchParams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « third_party/WebKit/Source/core/dom/URLSearchParams.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/URLSearchParams.cpp
diff --git a/third_party/WebKit/Source/core/dom/URLSearchParams.cpp b/third_party/WebKit/Source/core/dom/URLSearchParams.cpp
index b8108c7de3b4fdc38079c0321d9826347888c7b4..5ecad6ccd5faab3ce8a2366b91dfd69f5997baba 100644
--- a/third_party/WebKit/Source/core/dom/URLSearchParams.cpp
+++ b/third_party/WebKit/Source/core/dom/URLSearchParams.cpp
@@ -179,12 +179,10 @@ void URLSearchParams::set(const String& name, const String& value)
PassRefPtr<EncodedFormData> URLSearchParams::encodeFormData() const
{
- RefPtr<EncodedFormData> data = EncodedFormData::create();
Vector<char> encodedData;
for (const auto& param : m_params)
FormDataEncoder::addKeyValuePairAsFormData(encodedData, param.first.utf8(), param.second.utf8(), EncodedFormData::FormURLEncoded);
- data->appendData(encodedData.data(), encodedData.size());
- return data.release();
+ return EncodedFormData::create(encodedData.data(), encodedData.size());
}
DEFINE_TRACE(URLSearchParams)
« no previous file with comments | « third_party/WebKit/Source/core/dom/URLSearchParams.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698