| Index: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
|
| diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
|
| index 98d47e7fd8b5436ca0ea5a49d544f8b0e1593bd4..df87ca6179e6c9fede8dae4c685078571f7ee520 100644
|
| --- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
|
| +++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
|
| @@ -984,9 +984,9 @@ void XMLHttpRequest::createRequest(PassRefPtr<EncodedFormData> httpBody,
|
| request.setFetchCredentialsMode(
|
| includeCredentials ? WebURLRequest::FetchCredentialsModeInclude
|
| : WebURLRequest::FetchCredentialsModeSameOrigin);
|
| - request.setSkipServiceWorker(m_isIsolatedWorld
|
| - ? WebURLRequest::SkipServiceWorker::All
|
| - : WebURLRequest::SkipServiceWorker::None);
|
| + request.setServiceWorkerMode(m_isIsolatedWorld
|
| + ? WebURLRequest::ServiceWorkerMode::None
|
| + : WebURLRequest::ServiceWorkerMode::All);
|
| request.setExternalRequestStateFromRequestorAddressSpace(
|
| executionContext.securityContext().addressSpace());
|
|
|
|
|