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

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: Fixed review comments and merged Created 4 years, 8 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 c17d5d291f8b76d937239da60379b4d6c626853d..425750a292d21c0b076446170f99843f34ecb438 100644
--- a/net/base/layered_network_delegate.cc
+++ b/net/base/layered_network_delegate.cc
@@ -259,4 +259,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