Index: Source/platform/network/ResourceRequest.cpp |
diff --git a/Source/platform/network/ResourceRequest.cpp b/Source/platform/network/ResourceRequest.cpp |
index 3ca1a416778a2225e6b2c9f4521f8999b811456b..c8d5a8d217a26e3de4f824f440cf1060ec2efb37 100644 |
--- a/Source/platform/network/ResourceRequest.cpp |
+++ b/Source/platform/network/ResourceRequest.cpp |
@@ -269,12 +269,12 @@ void ResourceRequest::clearHTTPUserAgent() |
m_httpHeaderFields.remove("User-Agent"); |
} |
-FormData* ResourceRequest::httpBody() const |
+EncodedFormData* ResourceRequest::httpBody() const |
{ |
return m_httpBody.get(); |
} |
-void ResourceRequest::setHTTPBody(PassRefPtr<FormData> httpBody) |
+void ResourceRequest::setHTTPBody(PassRefPtr<EncodedFormData> httpBody) |
{ |
m_httpBody = httpBody; |
} |
@@ -345,8 +345,8 @@ bool equalIgnoringHeaderFields(const ResourceRequest& a, const ResourceRequest& |
if (a.referrerPolicy() != b.referrerPolicy()) |
return false; |
- FormData* formDataA = a.httpBody(); |
- FormData* formDataB = b.httpBody(); |
+ EncodedFormData* formDataA = a.httpBody(); |
+ EncodedFormData* formDataB = b.httpBody(); |
if (!formDataA) |
return !formDataB; |