Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: net/base/static_cookie_policy.cc

Issue 6749044: Remove async functionality from net::CookiePolicy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/base/static_cookie_policy.h ('k') | net/base/static_cookie_policy_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/base/static_cookie_policy.h" 5 #include "net/base/static_cookie_policy.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "googleurl/src/gurl.h" 8 #include "googleurl/src/gurl.h"
9 #include "net/base/net_errors.h" 9 #include "net/base/net_errors.h"
10 #include "net/base/registry_controlled_domain.h" 10 #include "net/base/registry_controlled_domain.h"
11 11
12 namespace net { 12 namespace net {
13 13
14 int StaticCookiePolicy::CanGetCookies(const GURL& url, 14 int StaticCookiePolicy::CanGetCookies(
15 const GURL& first_party_for_cookies, 15 const GURL& url,
16 CompletionCallback* callback) { 16 const GURL& first_party_for_cookies) const {
17 switch (type_) { 17 switch (type_) {
18 case StaticCookiePolicy::ALLOW_ALL_COOKIES: 18 case StaticCookiePolicy::ALLOW_ALL_COOKIES:
19 case StaticCookiePolicy::BLOCK_SETTING_THIRD_PARTY_COOKIES: 19 case StaticCookiePolicy::BLOCK_SETTING_THIRD_PARTY_COOKIES:
20 return OK; 20 return OK;
21 case StaticCookiePolicy::BLOCK_ALL_THIRD_PARTY_COOKIES: 21 case StaticCookiePolicy::BLOCK_ALL_THIRD_PARTY_COOKIES:
22 if (first_party_for_cookies.is_empty()) 22 if (first_party_for_cookies.is_empty())
23 return OK; // Empty first-party URL indicates a first-party request. 23 return OK; // Empty first-party URL indicates a first-party request.
24 return RegistryControlledDomainService::SameDomainOrHost( 24 return RegistryControlledDomainService::SameDomainOrHost(
25 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED; 25 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED;
26 case StaticCookiePolicy::BLOCK_ALL_COOKIES: 26 case StaticCookiePolicy::BLOCK_ALL_COOKIES:
27 return ERR_ACCESS_DENIED; 27 return ERR_ACCESS_DENIED;
28 default: 28 default:
29 NOTREACHED(); 29 NOTREACHED();
30 return ERR_ACCESS_DENIED; 30 return ERR_ACCESS_DENIED;
31 } 31 }
32 } 32 }
33 33
34 int StaticCookiePolicy::CanSetCookie(const GURL& url, 34 int StaticCookiePolicy::CanSetCookie(const GURL& url,
35 const GURL& first_party_for_cookies, 35 const GURL& first_party_for_cookies,
36 const std::string& cookie_line, 36 const std::string& cookie_line) const {
37 CompletionCallback* callback) {
38 switch (type_) { 37 switch (type_) {
39 case StaticCookiePolicy::ALLOW_ALL_COOKIES: 38 case StaticCookiePolicy::ALLOW_ALL_COOKIES:
40 return OK; 39 return OK;
41 case StaticCookiePolicy::BLOCK_SETTING_THIRD_PARTY_COOKIES: 40 case StaticCookiePolicy::BLOCK_SETTING_THIRD_PARTY_COOKIES:
42 case StaticCookiePolicy::BLOCK_ALL_THIRD_PARTY_COOKIES: 41 case StaticCookiePolicy::BLOCK_ALL_THIRD_PARTY_COOKIES:
43 if (first_party_for_cookies.is_empty()) 42 if (first_party_for_cookies.is_empty())
44 return OK; // Empty first-party URL indicates a first-party request. 43 return OK; // Empty first-party URL indicates a first-party request.
45 return RegistryControlledDomainService::SameDomainOrHost( 44 return RegistryControlledDomainService::SameDomainOrHost(
46 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED; 45 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED;
47 case StaticCookiePolicy::BLOCK_ALL_COOKIES: 46 case StaticCookiePolicy::BLOCK_ALL_COOKIES:
48 return ERR_ACCESS_DENIED; 47 return ERR_ACCESS_DENIED;
49 default: 48 default:
50 NOTREACHED(); 49 NOTREACHED();
51 return ERR_ACCESS_DENIED; 50 return ERR_ACCESS_DENIED;
52 } 51 }
53 } 52 }
54 53
55 } // namespace net 54 } // namespace net
OLDNEW
« no previous file with comments | « net/base/static_cookie_policy.h ('k') | net/base/static_cookie_policy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698