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/layered_network_delegate.h" | 5 #include "net/base/layered_network_delegate.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 namespace net { | 9 namespace net { |
10 | 10 |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 referrer_url); | 279 referrer_url); |
280 } | 280 } |
281 | 281 |
282 void LayeredNetworkDelegate:: | 282 void LayeredNetworkDelegate:: |
283 OnCancelURLRequestWithPolicyViolatingReferrerHeaderInternal( | 283 OnCancelURLRequestWithPolicyViolatingReferrerHeaderInternal( |
284 const URLRequest& request, | 284 const URLRequest& request, |
285 const GURL& target_url, | 285 const GURL& target_url, |
286 const GURL& referrer_url) const { | 286 const GURL& referrer_url) const { |
287 } | 287 } |
288 | 288 |
| 289 net::NetworkDelegate::URLBlacklistState |
| 290 LayeredNetworkDelegate::GetURLBlacklistState(const GURL& url) { |
| 291 return nested_network_delegate_->GetURLBlacklistState(url); |
| 292 } |
| 293 |
289 } // namespace net | 294 } // namespace net |
OLD | NEW |