Index: Source/core/xmlhttprequest/XMLHttpRequest.cpp |
diff --git a/Source/core/xmlhttprequest/XMLHttpRequest.cpp b/Source/core/xmlhttprequest/XMLHttpRequest.cpp |
index 9e12c2cf362644d89f8f52151e8ce5895039d3d5..43492402202c84c333d986c47ab36df8f9a8177d 100644 |
--- a/Source/core/xmlhttprequest/XMLHttpRequest.cpp |
+++ b/Source/core/xmlhttprequest/XMLHttpRequest.cpp |
@@ -50,7 +50,7 @@ |
#include "core/frame/Settings.h" |
#include "core/frame/UseCounter.h" |
#include "core/frame/csp/ContentSecurityPolicy.h" |
-#include "core/html/DOMFormData.h" |
+#include "core/html/FormData.h" |
#include "core/html/HTMLDocument.h" |
#include "core/html/parser/TextResourceDecoder.h" |
#include "core/inspector/ConsoleMessage.h" |
@@ -782,9 +782,9 @@ void XMLHttpRequest::send(Blob* body, ExceptionState& exceptionState) |
createRequest(httpBody.release(), exceptionState); |
} |
-void XMLHttpRequest::send(DOMFormData* body, ExceptionState& exceptionState) |
+void XMLHttpRequest::send(FormData* body, ExceptionState& exceptionState) |
{ |
- WTF_LOG(Network, "XMLHttpRequest %p send() DOMFormData %p", this, body); |
+ WTF_LOG(Network, "XMLHttpRequest %p send() FormData %p", this, body); |
if (!initSend(exceptionState)) |
return; |