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

Unified Diff: net/http/http_auth_handler_ntlm.h

Issue 1414313002: Allow dynamic updating of authentication policies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error on Windows and component build link error 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_handler_ntlm.h
diff --git a/net/http/http_auth_handler_ntlm.h b/net/http/http_auth_handler_ntlm.h
index b24b7e071ddd717454f64c02993b57e9b799cecb..c9cf76e92c838824d19229661184bed1fac03123 100644
--- a/net/http/http_auth_handler_ntlm.h
+++ b/net/http/http_auth_handler_ntlm.h
@@ -31,7 +31,7 @@
namespace net {
-class URLSecurityManager;
+class HttpAuthPreferences;
// Code for handling HTTP NTLM authentication.
class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
@@ -98,8 +98,9 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
HttpAuthHandlerNTLM();
#endif
#if defined(NTLM_SSPI)
- HttpAuthHandlerNTLM(SSPILibrary* sspi_library, ULONG max_token_length,
- URLSecurityManager* url_security_manager);
+ HttpAuthHandlerNTLM(SSPILibrary* sspi_library,
+ ULONG max_token_length,
+ HttpAuthPreferences* http_auth_preferences);
#endif
bool NeedsIdentity() override;
@@ -162,7 +163,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
std::string auth_data_;
#if defined(NTLM_SSPI)
- URLSecurityManager* url_security_manager_;
+ HttpAuthPreferences* http_auth_preferences_;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698