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

Unified Diff: net/http/http_auth_preferences.cc

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix IOS compile problem - attempt 3 Created 5 years, 1 month 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/http/http_auth_preferences.cc
diff --git a/net/http/http_auth_preferences.cc b/net/http/http_auth_preferences.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9623629d99972f4d1875fcbe9c5f3cc700246504
--- /dev/null
+++ b/net/http/http_auth_preferences.cc
@@ -0,0 +1,82 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/strings/string_split.h"
+#include "net/http/http_auth_filter.h"
+#include "net/http/http_auth_preferences.h"
+#include "net/http/url_security_manager.h"
+
+namespace net {
+
+HttpAuthPreferences::HttpAuthPreferences(
+ const std::vector<std::string>& auth_schemes
+#if defined(OS_POSIX) && !defined(OS_ANDROID)
+ ,
+ const std::string& gssapi_library_name
+#endif
+ )
+ : auth_schemes_(auth_schemes),
+ negotiate_disable_cname_lookup_(false),
+ negotiate_enable_port_(false),
+#if defined(OS_POSIX) && !defined(OS_ANDROID)
+ gssapi_library_name_(gssapi_library_name),
+#endif
+ security_manager_(URLSecurityManager::Create()) {
+}
+
+HttpAuthPreferences::~HttpAuthPreferences() {}
+
+std::vector<std::string> HttpAuthPreferences::auth_schemes() const {
+ return auth_schemes_;
+}
+
+bool HttpAuthPreferences::negotiate_disable_cname_lookup() const {
+ return negotiate_disable_cname_lookup_;
+}
+
+bool HttpAuthPreferences::negotiate_enable_port() const {
+ return negotiate_enable_port_;
+}
+
+#if defined(OS_ANDROID)
+std::string HttpAuthPreferences::auth_android_negotiate_account_type() const {
+ return auth_android_negotiate_account_type_;
+}
+#endif
+#if defined(OS_POSIX) && !defined(OS_ANDROID)
+std::string HttpAuthPreferences::gssapi_library_name() const {
+ return gssapi_library_name_;
+}
+#endif
+
+bool HttpAuthPreferences::CanUseDefaultCredentials(
+ const GURL& auth_origin) const {
+ return security_manager_->CanUseDefaultCredentials(auth_origin);
+}
+
+bool HttpAuthPreferences::CanDelegate(const GURL& auth_origin) const {
+ return security_manager_->CanDelegate(auth_origin);
+}
+
+void HttpAuthPreferences::set_server_whitelist(
+ const std::string& server_whitelist) {
+ if (server_whitelist.empty()) {
+ security_manager_->SetDefaultWhitelist(scoped_ptr<HttpAuthFilter>());
+ } else {
+ security_manager_->SetDefaultWhitelist(scoped_ptr<HttpAuthFilter>(
+ new net::HttpAuthFilterWhitelist(server_whitelist)));
+ }
+}
+
+void HttpAuthPreferences::set_delegate_whitelist(
+ const std::string& delegate_whitelist) {
+ if (delegate_whitelist.empty()) {
+ security_manager_->SetDelegateWhitelist(scoped_ptr<HttpAuthFilter>());
+ } else {
+ security_manager_->SetDelegateWhitelist(scoped_ptr<HttpAuthFilter>(
+ new net::HttpAuthFilterWhitelist(delegate_whitelist)));
+ }
+}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698