Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1922)

Unified Diff: Source/platform/network/FormData.h

Issue 29123004: Move core/platform/network to platform/network (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: One more file Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/exported/WebURLResponsePrivate.h ('k') | Source/platform/network/FormData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/platform/exported/WebURLResponsePrivate.h ('k') | Source/platform/network/FormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698