Home
last modified time | relevance | path

Searched refs:first_party (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/android_webview/browser/
Daw_cookie_access_policy.cc86 const GURL& first_party, in AllowGetCookie() argument
94 return AwStaticCookiePolicy(global, thirdParty).AllowGet(url, first_party); in AllowGetCookie()
98 const GURL& first_party, in AllowSetCookie() argument
107 return AwStaticCookiePolicy(global, thirdParty).AllowSet(url, first_party); in AllowSetCookie()
133 const GURL& first_party) const { in AllowSet()
135 return StaticCookiePolicy(GetPolicy(url)).CanSetCookie(url, first_party) == in AllowSet()
140 const GURL& first_party) const { in AllowGet()
141 return StaticCookiePolicy(GetPolicy(url)).CanGetCookies(url, first_party) == in AllowGet()
Daw_cookie_access_policy.h54 const GURL& first_party,
60 const GURL& first_party,
91 bool AllowGet(const GURL& url, const GURL& first_party) const;
92 bool AllowSet(const GURL& url, const GURL& first_party) const;
Daw_content_browser_client.cc288 const GURL& first_party, in AllowAppCache() argument
297 const GURL& first_party, in AllowGetCookie() argument
303 first_party, in AllowGetCookie()
311 const GURL& first_party, in AllowSetCookie() argument
318 first_party, in AllowSetCookie()
Daw_content_browser_client.h60 const GURL& first_party,
63 const GURL& first_party,
69 const GURL& first_party,
/external/chromium_org/content/browser/appcache/
Dchrome_appcache_service.cc53 const GURL& first_party) { in CanLoadAppCache() argument
57 manifest_url, first_party, resource_context_); in CanLoadAppCache()
61 const GURL& manifest_url, const GURL& first_party) { in CanCreateAppCache() argument
64 manifest_url, first_party, resource_context_); in CanCreateAppCache()
Dappcache_policy.h20 const GURL& first_party) = 0;
24 const GURL& first_party) = 0;
Dmock_appcache_policy.cc17 const GURL& first_party) { in CanLoadAppCache() argument
23 const GURL& first_party) { in CanCreateAppCache() argument
Dmock_appcache_policy.h20 const GURL& first_party) OVERRIDE;
22 const GURL& first_party) OVERRIDE;
Dchrome_appcache_service.h57 const GURL& first_party) OVERRIDE;
59 const GURL& first_party) OVERRIDE;
Dappcache_service_impl.cc91 const GURL& first_party, const net::CompletionCallback& callback) in CanHandleOfflineHelper() argument
94 first_party_(first_party) { in CanHandleOfflineHelper()
529 const GURL& first_party, in CanHandleMainResourceOffline() argument
532 new CanHandleOfflineHelper(this, url, first_party, callback); in CanHandleMainResourceOffline()
Dappcache_service_impl.h104 const GURL& first_party,
/external/chromium_org/chrome/browser/renderer_host/
Doffline_resource_throttle.cc82 const GURL* first_party = &(request_->first_party_for_cookies()); in WillStartRequest() local
88 if (url->GetOrigin() == first_party->GetOrigin()) in WillStartRequest()
89 first_party = &redirect_url; in WillStartRequest()
99 *url, *first_party, in WillStartRequest()
/external/chromium_org/net/base/
Dstatic_cookie_policy_unittest.cc23 int CanGetCookies(const GURL& url, const GURL& first_party) { in CanGetCookies() argument
24 return policy_.CanGetCookies(url, first_party); in CanGetCookies()
26 int CanSetCookie(const GURL& url, const GURL& first_party) { in CanSetCookie() argument
27 return policy_.CanSetCookie(url, first_party); in CanSetCookie()
/external/chromium_org/content/public/browser/
Dcontent_browser_client.cc114 const GURL& first_party, in AllowAppCache() argument
120 const GURL& first_party, in AllowGetCookie() argument
129 const GURL& first_party, in AllowSetCookie() argument
Dappcache_service.h40 const GURL& first_party,
Dcontent_browser_client.h274 const GURL& first_party,
280 const GURL& first_party,
289 const GURL& first_party,
/external/chromium_org/chrome/browser/
Dchrome_content_browser_client.h124 const GURL& first_party,
127 const GURL& first_party,
133 const GURL& first_party,
Dchrome_content_browser_client.cc1455 const GURL& first_party, in AllowAppCache() argument
1460 IsSettingCookieAllowed(manifest_url, first_party); in AllowAppCache()
1465 const GURL& first_party, in AllowGetCookie() argument
1473 IsReadingCookieAllowed(url, first_party); in AllowGetCookie()
1478 render_frame_id, url, first_party, cookie_list, !allow, true)); in AllowGetCookie()
1484 const GURL& first_party, in AllowSetCookie() argument
1493 bool allow = cookie_settings->IsSettingCookieAllowed(url, first_party); in AllowSetCookie()
1505 render_frame_id, url, first_party, cookie_line, *options, in AllowSetCookie()
/external/chromium_org/content/browser/loader/
Dresource_dispatcher_host_impl.h429 const GURL& first_party);
Dresource_dispatcher_host_impl.cc1991 const GURL& first_party) { in HttpAuthRelationTypeOf() argument
1992 if (!first_party.is_valid()) in HttpAuthRelationTypeOf()
1996 first_party, request_url, in HttpAuthRelationTypeOf()