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

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

Issue 1325893005: Rename DOMFormData to FormData. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/html/FormDataTest.cpp » ('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 6052aa94051d3139465acea9d77dc0f2c3e3359a..f20cc226272e813168a951dc316341cd93b7f1ee 100644
--- a/Source/core/html/FormDataList.cpp
+++ b/Source/core/html/FormDataList.cpp
@@ -93,13 +93,13 @@ void FormDataList::appendKeyValuePairItemsTo(EncodedFormData* formData, const WT
// For file blob, use the filename (or relative path if it is present) as the name.
name = file->webkitRelativePath().isEmpty() ? file->name() : file->webkitRelativePath();
- // If a filename is passed in DOMFormData.append(), use it
+ // If a filename is passed in FormData.append(), use it
// instead of the file blob's name.
if (!item.filename().isNull())
name = item.filename();
} else {
// For non-file blob, use the filename if it is passed in
- // DOMFormData.append().
+ // FormData.append().
if (!item.filename().isNull())
name = item.filename();
else
« no previous file with comments | « Source/core/html/FormDataList.h ('k') | Source/core/html/FormDataTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698