| 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 67dee78a0f331db232ded0f3b6ca98dd7ce70b57..874f3ba8fa516895566cf20c2ed51069da042602 100644
|
| --- a/net/http/http_auth_handler_ntlm.h
|
| +++ b/net/http/http_auth_handler_ntlm.h
|
| @@ -46,7 +46,6 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
|
| const std::string& scheme) override;
|
| scoped_ptr<HttpAuthHandler> CreateAndInitPreemptiveAuthHandler(
|
| HttpAuthCache::Entry* cache_entry,
|
| - const HttpAuthChallengeTokenizer& tokenizer,
|
| HttpAuth::Target target,
|
| const BoundNetLog& net_log) override;
|
| #if defined(NTLM_SSPI)
|
| @@ -116,7 +115,12 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
|
| int InitializeBeforeFirstChallenge();
|
|
|
| // HttpAuthHandler
|
| - int Init(const HttpAuthChallengeTokenizer& tok) override;
|
| + int InitializeFromChallengeInternal(
|
| + const HttpAuthChallengeTokenizer& challenge,
|
| + const HttpResponseInfo& response_with_challenge,
|
| + const CompletionCallback& callback) override;
|
| + int InitializeFromCacheEntryInternal(
|
| + HttpAuthCache::Entry* cache_entry) override;
|
| int GenerateAuthTokenImpl(const AuthCredentials* credentials,
|
| const HttpRequestInfo& request,
|
| const CompletionCallback& callback,
|
|
|