Chromium Code Reviews| Index: net/http/http_auth_handler_factory.h |
| diff --git a/net/http/http_auth_handler_factory.h b/net/http/http_auth_handler_factory.h |
| index 1261bedd567645f3e6c5fc3a5e214f2652569297..62e2445cd24858621cac9291e39d3240f5048d25 100644 |
| --- a/net/http/http_auth_handler_factory.h |
| +++ b/net/http/http_auth_handler_factory.h |
| @@ -181,12 +181,13 @@ class NET_EXPORT HttpAuthHandlerRegistryFactory |
| // how Negotiate does SPN generation, by default these should be false. |
| static HttpAuthHandlerRegistryFactory* Create( |
| const std::vector<std::string>& supported_schemes, |
| - URLSecurityManager* security_manager, |
| HostResolver* host_resolver, |
| - const std::string& gssapi_library_name, |
| - const std::string& auth_android_negotiate_account_type, |
| - bool negotiate_disable_cname_lookup, |
| - bool negotiate_enable_port); |
| + const std::string& gssapi_library_name); |
| + |
| + void SetSecurityManager(URLSecurityManager* security_manager); |
|
asanka
2015/10/28 03:27:43
Let's move this back to the constructor since we'v
aberent
2015/11/02 18:52:50
Done.
|
| + void SetAndroidAuthNegotiateAccountType(scoped_ptr<std::string> account_type); |
| + void SetNegotiateDisableCnameLookup(bool negotiate_disable_cname_lookup); |
| + void SetNegotiateEnablePort(bool negotiate_enable_port); |
| // Creates an auth handler by dispatching out to the registered factories |
| // based on the first token in |challenge|. |