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

Unified 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: Another variable set as const 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 side-by-side diff with in-line comments
Download patch
Index: net/base/layered_network_delegate.cc
diff --git a/net/base/layered_network_delegate.cc b/net/base/layered_network_delegate.cc
index 9fe37196ccdaa73c3635baf863f3a1aaffce072c..5e571ac40fd2b796444b70922efc0203dcedac70 100644
--- a/net/base/layered_network_delegate.cc
+++ b/net/base/layered_network_delegate.cc
@@ -286,4 +286,9 @@ void LayeredNetworkDelegate::
const GURL& referrer_url) const {
}
+net::NetworkDelegate::URLBlacklistState
+LayeredNetworkDelegate::GetURLBlacklistState(const GURL& url) const {
+ return nested_network_delegate_->GetURLBlacklistState(url);
+}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698