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

Unified Diff: net/base/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/network_delegate.cc
diff --git a/net/base/network_delegate.cc b/net/base/network_delegate.cc
index 113b7481478458d50ba6a42f4613bc0c0de69642..8f9f798303dac8c04af8a5bc44238d627ed5a742 100644
--- a/net/base/network_delegate.cc
+++ b/net/base/network_delegate.cc
@@ -185,4 +185,9 @@ bool NetworkDelegate::CancelURLRequestWithPolicyViolatingReferrerHeader(
request, target_url, referrer_url);
}
+NetworkDelegate::URLBlacklistState NetworkDelegate::GetURLBlacklistState(
+ const GURL& url) const {
+ return URL_NEUTRAL_STATE;
+}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698