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

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

Issue 1692503002: Functionality to allow blacklist and whitelist of custom schemes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unused comments Created 4 years, 9 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/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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698