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

Unified Diff: net/http/url_security_manager.cc

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to cbentzel@'s comments. Created 5 years 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
« no previous file with comments | « net/http/url_security_manager.h ('k') | net/http/url_security_manager_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/url_security_manager.cc
diff --git a/net/http/url_security_manager.cc b/net/http/url_security_manager.cc
index 4ff0f654dacfbcb192e1f83cda0e38bf98c1acd1..075b3884a99553ee0b8146642b61d49af899af16 100644
--- a/net/http/url_security_manager.cc
+++ b/net/http/url_security_manager.cc
@@ -8,12 +8,7 @@
namespace net {
-URLSecurityManagerWhitelist::URLSecurityManagerWhitelist(
- const HttpAuthFilter* whitelist_default,
- const HttpAuthFilter* whitelist_delegate)
- : whitelist_default_(whitelist_default),
- whitelist_delegate_(whitelist_delegate) {
-}
+URLSecurityManagerWhitelist::URLSecurityManagerWhitelist() {}
URLSecurityManagerWhitelist::~URLSecurityManagerWhitelist() {}
@@ -30,4 +25,18 @@ bool URLSecurityManagerWhitelist::CanDelegate(const GURL& auth_origin) const {
return false;
}
+void URLSecurityManagerWhitelist::SetDefaultWhitelist(
+ scoped_ptr<HttpAuthFilter> whitelist_default) {
+ whitelist_default_ = whitelist_default.Pass();
+}
+
+void URLSecurityManagerWhitelist::SetDelegateWhitelist(
+ scoped_ptr<HttpAuthFilter> whitelist_delegate) {
+ whitelist_delegate_ = whitelist_delegate.Pass();
+}
+
+bool URLSecurityManagerWhitelist::HasDefaultWhitelist() const {
+ return whitelist_default_.get() != nullptr;
+}
+
} // namespace net
« no previous file with comments | « net/http/url_security_manager.h ('k') | net/http/url_security_manager_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698