| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef FormData_h | 31 #ifndef FormData_h |
| 32 #define FormData_h | 32 #define FormData_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/FileOrUSVString.h" | 34 #include "bindings/core/v8/FileOrUSVString.h" |
| 35 #include "bindings/core/v8/Iterable.h" | 35 #include "bindings/core/v8/Iterable.h" |
| 36 #include "core/CoreExport.h" | 36 #include "core/CoreExport.h" |
| 37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
| 38 #include "platform/network/EncodedFormData.h" | 38 #include "platform/network/EncodedFormData.h" |
| 39 #include "wtf/Forward.h" | 39 #include "platform/wtf/Forward.h" |
| 40 #include "wtf/text/TextEncoding.h" | 40 #include "platform/wtf/text/TextEncoding.h" |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class Blob; | 44 class Blob; |
| 45 class HTMLFormElement; | 45 class HTMLFormElement; |
| 46 class ScriptState; | 46 class ScriptState; |
| 47 | 47 |
| 48 // Typedef from FormData.idl: | 48 // Typedef from FormData.idl: |
| 49 typedef FileOrUSVString FormDataEntryValue; | 49 typedef FileOrUSVString FormDataEntryValue; |
| 50 | 50 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 private: | 125 private: |
| 126 const CString name_; | 126 const CString name_; |
| 127 const CString value_; | 127 const CString value_; |
| 128 const Member<Blob> blob_; | 128 const Member<Blob> blob_; |
| 129 const String filename_; | 129 const String filename_; |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace blink | 132 } // namespace blink |
| 133 | 133 |
| 134 #endif // FormData_h | 134 #endif // FormData_h |
| OLD | NEW |