| Index: Source/core/fetch/ResourceFetcher.cpp
|
| diff --git a/Source/core/fetch/ResourceFetcher.cpp b/Source/core/fetch/ResourceFetcher.cpp
|
| index cc6338bf996c3343aacd4b9733d72828ccea0f32..e41f6489f6252f953bbff79af2cb085d9582c30b 100644
|
| --- a/Source/core/fetch/ResourceFetcher.cpp
|
| +++ b/Source/core/fetch/ResourceFetcher.cpp
|
| @@ -337,7 +337,7 @@ ResourcePtr<CSSStyleSheetResource> ResourceFetcher::fetchUserCSSStyleSheet(Fetch
|
| memoryCache()->remove(existing);
|
| }
|
|
|
| - request.setOptions(ResourceLoaderOptions(SniffContent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, AskClientForCrossOriginCredentials, SkipSecurityCheck, CheckContentSecurityPolicy, DocumentContext));
|
| + request.setOptions(ResourceLoaderOptions(SniffContent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, CheckContentSecurityPolicy, DocumentContext));
|
| return toCSSStyleSheetResource(requestResource(Resource::CSSStyleSheet, request));
|
| }
|
|
|
| @@ -1370,7 +1370,7 @@ void ResourceFetcher::printPreloadStats()
|
|
|
| const ResourceLoaderOptions& ResourceFetcher::defaultResourceOptions()
|
| {
|
| - DEFINE_STATIC_LOCAL(ResourceLoaderOptions, options, (SniffContent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, AskClientForCrossOriginCredentials, DoSecurityCheck, CheckContentSecurityPolicy, DocumentContext));
|
| + DEFINE_STATIC_LOCAL(ResourceLoaderOptions, options, (SniffContent, BufferData, AllowStoredCredentials, ClientRequestedCredentials, CheckContentSecurityPolicy, DocumentContext));
|
| return options;
|
| }
|
|
|
|
|