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

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

Issue 1323023005: Do not create FormDataList instances. (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 | « no previous file | Source/web/WebSearchableFormData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/FormDataList.h
diff --git a/Source/core/html/FormDataList.h b/Source/core/html/FormDataList.h
index 555d26be0318142a71e7305aeced665366c16b43..65b64e44c62c9cd8b218559fe61661a2bc201a80 100644
--- a/Source/core/html/FormDataList.h
+++ b/Source/core/html/FormDataList.h
@@ -32,6 +32,7 @@
namespace blink {
+// TODO(tkent): Merge FormDataList into DOMFormData.
class CORE_EXPORT FormDataList : public GarbageCollected<FormDataList> {
public:
// TODO(tkent): Merge Entry and Item.
@@ -82,11 +83,6 @@ public:
String m_filename;
};
- static FormDataList* create(const WTF::TextEncoding& encoding)
- {
- return new FormDataList(encoding);
- }
-
using FormDataListItems = HeapVector<FormDataList::Item>;
void appendData(const String& key, const String& value)
« no previous file with comments | « no previous file | Source/web/WebSearchableFormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698