| Index: Source/core/loader/FormSubmission.h
|
| diff --git a/Source/core/loader/FormSubmission.h b/Source/core/loader/FormSubmission.h
|
| index 46fcd82ef8d6e8bd416dadb5ff314000cab8d102..35b5530dc61294a3eeeb6855586f296ef4e82a02 100644
|
| --- a/Source/core/loader/FormSubmission.h
|
| +++ b/Source/core/loader/FormSubmission.h
|
| @@ -67,8 +67,8 @@ public:
|
| void updateMethodType(const String&);
|
| static String methodString(Method);
|
|
|
| - const String& action() const { return m_action; }
|
| - void parseAction(const String&);
|
| + const KURL& action() const { return m_action; }
|
| + void parseAction(const Document&, const String&);
|
|
|
| const AtomicString& target() const { return m_target; }
|
| void setTarget(const AtomicString& target) { m_target = target; }
|
| @@ -87,7 +87,7 @@ public:
|
| Method m_method;
|
| bool m_isMultiPartForm;
|
|
|
| - String m_action;
|
| + KURL m_action;
|
| AtomicString m_target;
|
| AtomicString m_encodingType;
|
| String m_acceptCharset;
|
|
|