| 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 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef FormSubmission_h | 31 #ifndef FormSubmission_h |
| 32 #define FormSubmission_h | 32 #define FormSubmission_h |
| 33 | 33 |
| 34 #include "core/loader/FrameLoadRequest.h" | 34 #include "core/loader/FrameLoadRequest.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "platform/weborigin/KURL.h" | 36 #include "platform/weborigin/KURL.h" |
| 37 #include "platform/weborigin/Referrer.h" | 37 #include "platform/weborigin/Referrer.h" |
| 38 #include "wtf/Allocator.h" | 38 #include "platform/wtf/Allocator.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class Document; | 42 class Document; |
| 43 class EncodedFormData; | 43 class EncodedFormData; |
| 44 class Event; | 44 class Event; |
| 45 class HTMLFormControlElement; | 45 class HTMLFormControlElement; |
| 46 class HTMLFormElement; | 46 class HTMLFormElement; |
| 47 | 47 |
| 48 class FormSubmission : public GarbageCollectedFinalized<FormSubmission> { | 48 class FormSubmission : public GarbageCollectedFinalized<FormSubmission> { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 Member<HTMLFormElement> form_; | 129 Member<HTMLFormElement> form_; |
| 130 RefPtr<EncodedFormData> form_data_; | 130 RefPtr<EncodedFormData> form_data_; |
| 131 String boundary_; | 131 String boundary_; |
| 132 Member<Event> event_; | 132 Member<Event> event_; |
| 133 String result_; | 133 String result_; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace blink | 136 } // namespace blink |
| 137 | 137 |
| 138 #endif // FormSubmission_h | 138 #endif // FormSubmission_h |
| OLD | NEW |