Chromium Code Reviews| Index: Source/core/xml/XMLHttpRequest.cpp |
| diff --git a/Source/core/xml/XMLHttpRequest.cpp b/Source/core/xml/XMLHttpRequest.cpp |
| index 4b9907041a8dabf80045676d952f01b8fc6afa4d..57bca14f226b65068dd43817afaa25b7b7cd6935 100644 |
| --- a/Source/core/xml/XMLHttpRequest.cpp |
| +++ b/Source/core/xml/XMLHttpRequest.cpp |
| @@ -70,6 +70,7 @@ |
| #include "wtf/RefCountedLeakCounter.h" |
| #include "wtf/StdLibExtras.h" |
| #include "wtf/text/CString.h" |
| +#include "wtf/text/WTFString.h" |
|
sof
2014/10/22 06:35:41
Accidental addition?
tyoshino (SeeGerritForStatus)
2014/10/22 06:53:57
Removed
|
| namespace blink { |
| @@ -196,7 +197,6 @@ XMLHttpRequest::XMLHttpRequest(ExecutionContext* context, PassRefPtr<SecurityOri |
| , m_state(UNSENT) |
| , m_lengthDownloadedToFile(0) |
| , m_receivedLength(0) |
| - , m_lastSendLineNumber(0) |
| , m_exceptionCode(0) |
| , m_progressEventThrottle(this) |
| , m_responseTypeCode(ResponseTypeDefault) |
| @@ -1451,7 +1451,7 @@ void XMLHttpRequest::notifyParserStopped() |
| void XMLHttpRequest::endLoading() |
| { |
| - InspectorInstrumentation::didFinishXHRLoading(executionContext(), this, this, m_loaderIdentifier, m_responseText, m_method, m_url, m_lastSendURL, m_lastSendLineNumber); |
| + InspectorInstrumentation::didFinishXHRLoading(executionContext(), this, this, m_loaderIdentifier, m_responseText, m_method, m_url); |
| if (m_loader) |
| m_loader = nullptr; |