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 20 matching lines...) Expand all Loading... |
31 #ifndef FormSubmission_h | 31 #ifndef FormSubmission_h |
32 #define FormSubmission_h | 32 #define FormSubmission_h |
33 | 33 |
34 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
35 #include "platform/weborigin/KURL.h" | 35 #include "platform/weborigin/KURL.h" |
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 Event; | 42 class Event; |
42 class FormData; | |
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 RefCountedWillBeGarbageCollectedFinalized<FormSubm
ission> { |
47 public: | 47 public: |
48 enum Method { GetMethod, PostMethod, DialogMethod }; | 48 enum Method { GetMethod, PostMethod, DialogMethod }; |
49 | 49 |
50 class Attributes { | 50 class Attributes { |
51 DISALLOW_ALLOCATION(); | 51 DISALLOW_ALLOCATION(); |
52 WTF_MAKE_NONCOPYABLE(Attributes); | 52 WTF_MAKE_NONCOPYABLE(Attributes); |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 void populateFrameLoadRequest(FrameLoadRequest&); | 95 void populateFrameLoadRequest(FrameLoadRequest&); |
96 | 96 |
97 KURL requestURL() const; | 97 KURL requestURL() const; |
98 | 98 |
99 Method method() const { return m_method; } | 99 Method 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 FormData* 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(Method, const KURL& action, const AtomicString& target, const
AtomicString& contentType, HTMLFormElement*, PassRefPtr<FormData>, const String
& boundary, PassRefPtrWillBeRawPtr<Event>); | 110 FormSubmission(Method, const KURL& action, const AtomicString& target, const
AtomicString& contentType, HTMLFormElement*, PassRefPtr<EncodedFormData>, const
String& boundary, PassRefPtrWillBeRawPtr<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 Method m_method; | 115 Method 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 RefPtrWillBeMember<HTMLFormElement> m_form; |
120 RefPtr<FormData> m_formData; | 120 RefPtr<EncodedFormData> m_formData; |
121 String m_boundary; | 121 String m_boundary; |
122 RefPtrWillBeMember<Event> m_event; | 122 RefPtrWillBeMember<Event> m_event; |
123 String m_result; | 123 String m_result; |
124 }; | 124 }; |
125 | 125 |
126 } | 126 } |
127 | 127 |
128 #endif // FormSubmission_h | 128 #endif // FormSubmission_h |
OLD | NEW |