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

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

Issue 1393193005: Implement $Secure- cookie prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add another test Created 5 years, 2 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
OLDNEW
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
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::OnExperimentalFeaturesEnabled() 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698