| Index: Source/core/html/FormDataList.h
|
| diff --git a/Source/core/html/FormDataList.h b/Source/core/html/FormDataList.h
|
| index 555d26be0318142a71e7305aeced665366c16b43..63d12bf37668a4f249e60bf7655d6a119157818d 100644
|
| --- a/Source/core/html/FormDataList.h
|
| +++ b/Source/core/html/FormDataList.h
|
| @@ -111,8 +111,6 @@ public:
|
| Entry getEntry(size_t index) const;
|
| HeapVector<Entry> getAll(const String& key) const;
|
| bool hasEntry(const String& key) const;
|
| - void setBlob(const String& key, Blob*, const String& filename);
|
| - void setData(const String& key, const String& value);
|
| size_t size() const { return m_items.size(); }
|
|
|
| const FormDataListItems& items() const { return m_items; }
|
| @@ -125,17 +123,17 @@ public:
|
|
|
| protected:
|
| explicit FormDataList(const WTF::TextEncoding&);
|
| + CString encodeAndNormalize(const String& key) const;
|
| +
|
| + FormDataListItems m_items;
|
|
|
| private:
|
| void appendKeyValuePairItemsTo(FormData*, const WTF::TextEncoding&, bool isMultiPartForm, FormData::EncodingType = FormData::FormURLEncoded);
|
|
|
| void appendItem(const Item&);
|
| - void setEntry(const Item&);
|
| Entry itemsToEntry(const Item&) const;
|
| - CString encodeAndNormalize(const String& key) const;
|
|
|
| WTF::TextEncoding m_encoding;
|
| - FormDataListItems m_items;
|
| };
|
|
|
| } // namespace blink
|
|
|