OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_domains/registry_controlled_domain.h" |
11 | 11 |
12 namespace net { | 12 namespace net { |
13 | 13 |
14 int StaticCookiePolicy::CanGetCookies( | 14 int StaticCookiePolicy::CanGetCookies( |
15 const GURL& url, | 15 const GURL& url, |
16 const GURL& first_party_for_cookies) const { | 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; |
(...skipping 24 matching lines...) Expand all Loading... |
45 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED; | 45 url, first_party_for_cookies) ? OK : ERR_ACCESS_DENIED; |
46 case StaticCookiePolicy::BLOCK_ALL_COOKIES: | 46 case StaticCookiePolicy::BLOCK_ALL_COOKIES: |
47 return ERR_ACCESS_DENIED; | 47 return ERR_ACCESS_DENIED; |
48 default: | 48 default: |
49 NOTREACHED(); | 49 NOTREACHED(); |
50 return ERR_ACCESS_DENIED; | 50 return ERR_ACCESS_DENIED; |
51 } | 51 } |
52 } | 52 } |
53 | 53 |
54 } // namespace net | 54 } // namespace net |
OLD | NEW |