| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/network_delegate_impl.h" | 5 #include "net/base/network_delegate_impl.h" |
| 6 | 6 |
| 7 #include "net/base/net_errors.h" | 7 #include "net/base/net_errors.h" |
| 8 | 8 |
| 9 namespace net { | 9 namespace net { |
| 10 | 10 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 const base::FilePath& path) const { | 97 const base::FilePath& path) const { |
| 98 return false; | 98 return false; |
| 99 } | 99 } |
| 100 | 100 |
| 101 bool NetworkDelegateImpl::OnCanEnablePrivacyMode( | 101 bool NetworkDelegateImpl::OnCanEnablePrivacyMode( |
| 102 const GURL& url, | 102 const GURL& url, |
| 103 const GURL& first_party_for_cookies) const { | 103 const GURL& first_party_for_cookies) const { |
| 104 return false; | 104 return false; |
| 105 } | 105 } |
| 106 | 106 |
| 107 bool NetworkDelegateImpl::OnFirstPartyOnlyCookieExperimentEnabled() const { | 107 bool NetworkDelegateImpl::OnExperimentalCookieFeaturesEnabled() const { |
| 108 return false; | 108 return false; |
| 109 } | 109 } |
| 110 | 110 |
| 111 bool NetworkDelegateImpl::OnCancelURLRequestWithPolicyViolatingReferrerHeader( | 111 bool NetworkDelegateImpl::OnCancelURLRequestWithPolicyViolatingReferrerHeader( |
| 112 const URLRequest& request, | 112 const URLRequest& request, |
| 113 const GURL& target_url, | 113 const GURL& target_url, |
| 114 const GURL& referrer_url) const { | 114 const GURL& referrer_url) const { |
| 115 return false; | 115 return false; |
| 116 } | 116 } |
| 117 | 117 |
| 118 } // namespace net | 118 } // namespace net |
| OLD | NEW |