Searched refs:allowCredentials (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/WebKit/public/web/
H A DWebURLLoaderOptions.h52 , allowCredentials(false)
59 bool allowCredentials; // Whether to send HTTP credentials and cookies with the request. member in struct:blink::WebURLLoaderOptions
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchRequest.cpp72 void FetchRequest::setCrossOriginAccessControl(SecurityOrigin* origin, StoredCredentials allowCredentials, CredentialRequest requested) argument
74 ASSERT(requested == ClientDidNotRequestCredentials || allowCredentials == AllowStoredCredentials);
75 updateRequestForAccessControl(m_resourceRequest, origin, allowCredentials);
76 m_options.allowCredentials = allowCredentials;
82 void FetchRequest::setCrossOriginAccessControl(SecurityOrigin* origin, StoredCredentials allowCredentials) argument
84 setCrossOriginAccessControl(origin, allowCredentials, allowCredentials == AllowStoredCredentials ? ClientRequestedCredentials : ClientDidNotRequestCredentials);
H A DResourceLoaderOptions.h91 , allowCredentials(DoNotAllowStoredCredentials)
103 StoredCredentials allowCredentials,
108 , allowCredentials(allowCredentials)
124 // FIXME: check allowCredentials.
138 StoredCredentials allowCredentials; // Whether HTTP credentials and cookies are sent with the request. member in struct:blink::ResourceLoaderOptions
153 , allowCredentials(options.allowCredentials)
167 options.allowCredentials = allowCredentials;
101 ResourceLoaderOptions( DataBufferingPolicy dataBufferingPolicy, StoredCredentials allowCredentials, CredentialRequest credentialsRequested, ContentSecurityPolicyCheck contentSecurityPolicyOption, RequestInitiatorContext requestInitiatorContext) argument
180 StoredCredentials allowCredentials; member in struct:blink::CrossThreadResourceLoaderOptionsData
[all...]
H A DCrossOriginAccessControl.cpp64 void updateRequestForAccessControl(ResourceRequest& request, SecurityOrigin* securityOrigin, StoredCredentials allowCredentials) argument
67 request.setAllowStoredCredentials(allowCredentials == AllowStoredCredentials);
243 options.allowCredentials = DoNotAllowStoredCredentials;
H A DResourceLoader.cpp533 request.setAllowStoredCredentials(m_options.allowCredentials == AllowStoredCredentials);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLResourcePreloader.h52 void setCrossOriginEnabled(StoredCredentials allowCredentials) argument
55 m_allowCredentials = allowCredentials;
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerScriptLoader.cpp73 resourceLoaderOptions.allowCredentials = AllowStoredCredentials;
92 resourceLoaderOptions.allowCredentials = AllowStoredCredentials;
/external/chromium_org/chrome/renderer/
H A Dprefetch_helper.cc39 options.allowCredentials = true;
/external/chromium_org/content/renderer/media/android/
H A Dmedia_info_loader.cc66 options.allowCredentials = true;
77 options.allowCredentials = true;
/external/chromium_org/content/renderer/pepper/
H A Dpepper_url_loader_host.cc265 options.allowCredentials = true;
274 options.allowCredentials = filled_in_request_data.allow_credentials;
279 options.allowCredentials = true;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageValue.cpp68 request.setCrossOriginAccessControl(fetcher->document()->securityOrigin(), options.allowCredentials, options.credentialsRequested);
H A DCSSImageSetValue.cpp111 request.setCrossOriginAccessControl(loader->document()->securityOrigin(), options.allowCredentials, options.credentialsRequested);
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceRequest.cpp247 void ResourceRequest::setAllowStoredCredentials(bool allowCredentials) argument
249 m_allowStoredCredentials = allowCredentials;
H A DResourceRequest.h141 void setAllowStoredCredentials(bool allowCredentials);
/external/chromium_org/third_party/WebKit/Source/web/
H A DAssociatedURLLoader.cpp344 resourceLoaderOptions.allowCredentials = m_options.allowCredentials ? AllowStoredCredentials : DoNotAllowStoredCredentials;
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DDocumentThreadableLoader.cpp151 preflightOptions.allowCredentials = DoNotAllowStoredCredentials;
486 resourceLoaderOptions.allowCredentials = DoNotAllowStoredCredentials;
568 return m_resourceLoaderOptions.allowCredentials;
/external/chromium_org/content/renderer/p2p/
H A Dport_allocator.cc169 options.allowCredentials = false;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResourceLoader.cpp110 options.allowCredentials = DoNotAllowStoredCredentials;
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderLoader.cpp119 resourceLoaderOptions.allowCredentials = AllowStoredCredentials;
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchManager.cpp308 resourceLoaderOptions.allowCredentials = AllowStoredCredentials;
/external/chromium_org/media/blink/
H A Dbuffered_resource_loader.cc186 options.allowCredentials = true;
196 options.allowCredentials = true;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventSource.cpp145 resourceLoaderOptions.allowCredentials = (origin->canRequest(m_url) || m_withCredentials) ? AllowStoredCredentials : DoNotAllowStoredCredentials;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DAssociatedURLLoaderTest.cpp399 options.allowCredentials = true;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorResourceAgent.cpp810 resourceLoaderOptions.allowCredentials = AllowStoredCredentials;
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_impl.cc1310 options.allowCredentials = true;

Completed in 869 milliseconds

12