summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/network/FormDataBuilder.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/network/FormDataBuilder.h')
-rw-r--r--WebCore/platform/network/FormDataBuilder.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/WebCore/platform/network/FormDataBuilder.h b/WebCore/platform/network/FormDataBuilder.h
index 390a87b..559906e 100644
--- a/WebCore/platform/network/FormDataBuilder.h
+++ b/WebCore/platform/network/FormDataBuilder.h
@@ -45,12 +45,18 @@ public:
bool isMultiPartForm() const { return m_isMultiPartForm; }
void setIsMultiPartForm(bool value) { m_isMultiPartForm = value; }
+ const String& action() const { return m_action; }
+
+ const String& target() const { return m_target; }
+ void setTarget(const String& target) { m_target = target; }
+
String encodingType() const { return m_encodingType; }
void setEncodingType(const String& value) { m_encodingType = value; }
String acceptCharset() const { return m_acceptCharset; }
void setAcceptCharset(const String& value) { m_acceptCharset = value; }
+ void parseAction(const String&);
void parseEncodingType(const String&);
void parseMethodType(const String&);
@@ -72,6 +78,8 @@ private:
bool m_isPostMethod;
bool m_isMultiPartForm;
+ String m_action;
+ String m_target;
String m_encodingType;
String m_acceptCharset;
};