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

Unified Diff: net/http/http_auth_filter.h

Issue 3155046: Add support for delegated Kerberos tickets during Negotiate authentication. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | net/http/http_auth_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_filter.h
===================================================================
--- net/http/http_auth_filter.h (revision 57541)
+++ net/http/http_auth_filter.h (working copy)
@@ -34,16 +34,12 @@
// All proxies are allowed.
class HttpAuthFilterWhitelist : public HttpAuthFilter {
public:
- HttpAuthFilterWhitelist();
+ explicit HttpAuthFilterWhitelist(const std::string& server_whitelist);
virtual ~HttpAuthFilterWhitelist();
// HttpAuthFilter methods:
virtual bool IsValid(const GURL& url, HttpAuth::Target target) const;
- // Installs the whitelist.
- // |server_whitelist| is parsed by ProxyBypassRules.
- void SetWhitelist(const std::string& server_whitelist);
-
// Adds an individual URL |filter| to the list, of the specified |target|.
bool AddFilter(const std::string& filter, HttpAuth::Target target);
@@ -53,6 +49,10 @@
const ProxyBypassRules& rules() const { return rules_; }
private:
+ // Installs the whitelist.
+ // |server_whitelist| is parsed by ProxyBypassRules.
+ void SetWhitelist(const std::string& server_whitelist);
+
// We are using ProxyBypassRules because they have the functionality that we
// want, but we are not using it for proxy bypass.
ProxyBypassRules rules_;
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | net/http/http_auth_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698