| Index: Source/core/xml/XMLHttpRequest.cpp
|
| diff --git a/Source/core/xml/XMLHttpRequest.cpp b/Source/core/xml/XMLHttpRequest.cpp
|
| index 305774dd0cfad72816dff90796dfd41f87cea206..eb2abbcddc0976a4e8157bea3a17f83209dbeb1e 100644
|
| --- a/Source/core/xml/XMLHttpRequest.cpp
|
| +++ b/Source/core/xml/XMLHttpRequest.cpp
|
| @@ -167,16 +167,9 @@ PassRefPtrWillBeRawPtr<XMLHttpRequest> XMLHttpRequest::create(ExecutionContext*
|
|
|
| XMLHttpRequest::XMLHttpRequest(ExecutionContext* context, PassRefPtr<SecurityOrigin> securityOrigin)
|
| : ActiveDOMObject(context)
|
| - , m_async(true)
|
| - , m_includeCredentials(false)
|
| , m_timeoutMilliseconds(0)
|
| , m_state(UNSENT)
|
| - , m_createdDocument(false)
|
| , m_downloadedBlobLength(0)
|
| - , m_error(false)
|
| - , m_uploadEventsAllowed(true)
|
| - , m_uploadComplete(false)
|
| - , m_sameOriginRequest(true)
|
| , m_receivedLength(0)
|
| , m_lastSendLineNumber(0)
|
| , m_exceptionCode(0)
|
| @@ -184,6 +177,13 @@ XMLHttpRequest::XMLHttpRequest(ExecutionContext* context, PassRefPtr<SecurityOri
|
| , m_responseTypeCode(ResponseTypeDefault)
|
| , m_dropProtectionRunner(this, &XMLHttpRequest::dropProtection)
|
| , m_securityOrigin(securityOrigin)
|
| + , m_async(true)
|
| + , m_includeCredentials(false)
|
| + , m_createdDocument(false)
|
| + , m_error(false)
|
| + , m_uploadEventsAllowed(true)
|
| + , m_uploadComplete(false)
|
| + , m_sameOriginRequest(true)
|
| {
|
| initializeXMLHttpRequestStaticData();
|
| #ifndef NDEBUG
|
|
|