| Index: net/http/http_auth_handler_ntlm_portable.cc
|
| diff --git a/net/http/http_auth_handler_ntlm_portable.cc b/net/http/http_auth_handler_ntlm_portable.cc
|
| index baec351f36796d07009bad91cd824f896bc32a12..b5a488260b768944158f8b1ed6e52c258fdfef11 100644
|
| --- a/net/http/http_auth_handler_ntlm_portable.cc
|
| +++ b/net/http/http_auth_handler_ntlm_portable.cc
|
| @@ -714,6 +714,7 @@ int HttpAuthHandlerNTLM::GetNextToken(const void* in_token,
|
| int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
|
| HttpAuthChallengeTokenizer* challenge,
|
| HttpAuth::Target target,
|
| + const SSLInfo& ssl_info,
|
| const GURL& origin,
|
| CreateReason reason,
|
| int digest_nonce_count,
|
| @@ -726,7 +727,8 @@ int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
|
| // NOTE: Default credentials are not supported for the portable implementation
|
| // of NTLM.
|
| scoped_ptr<HttpAuthHandler> tmp_handler(new HttpAuthHandlerNTLM);
|
| - if (!tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
|
| + if (!tmp_handler->InitFromChallenge(challenge, target, ssl_info, origin,
|
| + net_log))
|
| return ERR_INVALID_RESPONSE;
|
| handler->swap(tmp_handler);
|
| return OK;
|
|
|