| Index: Source/platform/network/FormData.h
|
| diff --git a/Source/core/platform/network/FormData.h b/Source/platform/network/FormData.h
|
| similarity index 98%
|
| rename from Source/core/platform/network/FormData.h
|
| rename to Source/platform/network/FormData.h
|
| index 65e7e75cb7d76e62978114ca1787668ca6457317..34baa640db6e909c9097d8a978417d9014046199 100644
|
| --- a/Source/core/platform/network/FormData.h
|
| +++ b/Source/platform/network/FormData.h
|
| @@ -35,7 +35,7 @@ namespace WebCore {
|
|
|
| class BlobDataHandle;
|
|
|
| -class FormDataElement {
|
| +class PLATFORM_EXPORT FormDataElement {
|
| public:
|
| FormDataElement() : m_type(data) { }
|
| explicit FormDataElement(const Vector<char>& array) : m_type(data), m_data(array) { }
|
| @@ -84,7 +84,7 @@ inline bool operator!=(const FormDataElement& a, const FormDataElement& b)
|
| return !(a == b);
|
| }
|
|
|
| -class FormData : public RefCounted<FormData> {
|
| +class PLATFORM_EXPORT FormData : public RefCounted<FormData> {
|
| public:
|
| enum EncodingType {
|
| FormURLEncoded, // for application/x-www-form-urlencoded
|
|
|