| Index: Source/core/xml/XMLHttpRequest.cpp
|
| diff --git a/Source/core/xml/XMLHttpRequest.cpp b/Source/core/xml/XMLHttpRequest.cpp
|
| index 4b9907041a8dabf80045676d952f01b8fc6afa4d..d1b15249e0c69fdd201afe94b8ad21cc4ff53626 100644
|
| --- a/Source/core/xml/XMLHttpRequest.cpp
|
| +++ b/Source/core/xml/XMLHttpRequest.cpp
|
| @@ -196,7 +196,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 +1450,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;
|
|
|