| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "platform/weborigin/Referrer.h" | 36 #include "platform/weborigin/Referrer.h" |
| 37 #include "wtf/Allocator.h" | 37 #include "wtf/Allocator.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 class EncodedFormData; | 41 class EncodedFormData; |
| 42 class Event; | 42 class Event; |
| 43 struct FrameLoadRequest; | 43 struct FrameLoadRequest; |
| 44 class HTMLFormElement; | 44 class HTMLFormElement; |
| 45 | 45 |
| 46 class FormSubmission : public RefCountedWillBeGarbageCollectedFinalized<FormSubm
ission> { | 46 class FormSubmission : public GarbageCollectedFinalized<FormSubmission> { |
| 47 public: | 47 public: |
| 48 enum SubmitMethod { GetMethod, PostMethod, DialogMethod }; | 48 enum SubmitMethod { GetMethod, PostMethod, DialogMethod }; |
| 49 | 49 |
| 50 class Attributes { | 50 class Attributes { |
| 51 DISALLOW_NEW(); | 51 DISALLOW_NEW(); |
| 52 WTF_MAKE_NONCOPYABLE(Attributes); | 52 WTF_MAKE_NONCOPYABLE(Attributes); |
| 53 public: | 53 public: |
| 54 Attributes() | 54 Attributes() |
| 55 : m_method(GetMethod) | 55 : m_method(GetMethod) |
| 56 , m_isMultiPartForm(false) | 56 , m_isMultiPartForm(false) |
| (...skipping 25 matching lines...) Expand all Loading... |
| 82 private: | 82 private: |
| 83 SubmitMethod m_method; | 83 SubmitMethod m_method; |
| 84 bool m_isMultiPartForm; | 84 bool m_isMultiPartForm; |
| 85 | 85 |
| 86 String m_action; | 86 String m_action; |
| 87 AtomicString m_target; | 87 AtomicString m_target; |
| 88 AtomicString m_encodingType; | 88 AtomicString m_encodingType; |
| 89 String m_acceptCharset; | 89 String m_acceptCharset; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 static PassRefPtrWillBeRawPtr<FormSubmission> create(HTMLFormElement*, const
Attributes&, PassRefPtrWillBeRawPtr<Event>); | 92 static RawPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, Ra
wPtr<Event>); |
| 93 DECLARE_TRACE(); | 93 DECLARE_TRACE(); |
| 94 | 94 |
| 95 void populateFrameLoadRequest(FrameLoadRequest&); | 95 void populateFrameLoadRequest(FrameLoadRequest&); |
| 96 | 96 |
| 97 KURL requestURL() const; | 97 KURL requestURL() const; |
| 98 | 98 |
| 99 SubmitMethod method() const { return m_method; } | 99 SubmitMethod method() const { return m_method; } |
| 100 const KURL& action() const { return m_action; } | 100 const KURL& action() const { return m_action; } |
| 101 const AtomicString& target() const { return m_target; } | 101 const AtomicString& target() const { return m_target; } |
| 102 void clearTarget() { m_target = nullAtom; } | 102 void clearTarget() { m_target = nullAtom; } |
| 103 HTMLFormElement* form() const { return m_form.get(); } | 103 HTMLFormElement* form() const { return m_form.get(); } |
| 104 EncodedFormData* data() const { return m_formData.get(); } | 104 EncodedFormData* data() const { return m_formData.get(); } |
| 105 Event* event() const { return m_event.get(); } | 105 Event* event() const { return m_event.get(); } |
| 106 | 106 |
| 107 const String& result() const { return m_result; } | 107 const String& result() const { return m_result; } |
| 108 | 108 |
| 109 private: | 109 private: |
| 110 FormSubmission(SubmitMethod, const KURL& action, const AtomicString& target,
const AtomicString& contentType, HTMLFormElement*, PassRefPtr<EncodedFormData>,
const String& boundary, PassRefPtrWillBeRawPtr<Event>); | 110 FormSubmission(SubmitMethod, const KURL& action, const AtomicString& target,
const AtomicString& contentType, HTMLFormElement*, PassRefPtr<EncodedFormData>,
const String& boundary, RawPtr<Event>); |
| 111 // FormSubmission for DialogMethod | 111 // FormSubmission for DialogMethod |
| 112 FormSubmission(const String& result); | 112 FormSubmission(const String& result); |
| 113 | 113 |
| 114 // FIXME: Hold an instance of Attributes instead of individual members. | 114 // FIXME: Hold an instance of Attributes instead of individual members. |
| 115 SubmitMethod m_method; | 115 SubmitMethod m_method; |
| 116 KURL m_action; | 116 KURL m_action; |
| 117 AtomicString m_target; | 117 AtomicString m_target; |
| 118 AtomicString m_contentType; | 118 AtomicString m_contentType; |
| 119 RefPtrWillBeMember<HTMLFormElement> m_form; | 119 Member<HTMLFormElement> m_form; |
| 120 RefPtr<EncodedFormData> m_formData; | 120 RefPtr<EncodedFormData> m_formData; |
| 121 String m_boundary; | 121 String m_boundary; |
| 122 RefPtrWillBeMember<Event> m_event; | 122 Member<Event> m_event; |
| 123 String m_result; | 123 String m_result; |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 } // namespace blink | 126 } // namespace blink |
| 127 | 127 |
| 128 #endif // FormSubmission_h | 128 #endif // FormSubmission_h |
| OLD | NEW |