| 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 d71b498daa346950c6ed519e7807c86f6808ae23..58e2993bf625663760063177a988a0606d533344 100644
|
| --- a/net/http/http_auth_handler_ntlm.h
|
| +++ b/net/http/http_auth_handler_ntlm.h
|
| @@ -45,6 +45,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
|
|
|
| int CreateAuthHandler(HttpAuthChallengeTokenizer* challenge,
|
| HttpAuth::Target target,
|
| + const SSLInfo& ssl_info,
|
| const GURL& origin,
|
| CreateReason reason,
|
| int digest_nonce_count,
|
| @@ -117,7 +118,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
|
| // It does nothing in the portable implementation.
|
| int InitializeBeforeFirstChallenge();
|
|
|
| - bool Init(HttpAuthChallengeTokenizer* tok) override;
|
| + bool Init(HttpAuthChallengeTokenizer* tok, const SSLInfo& ssl_info) override;
|
|
|
| int GenerateAuthTokenImpl(const AuthCredentials* credentials,
|
| const HttpRequestInfo* request,
|
| @@ -159,6 +160,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNTLM : public HttpAuthHandler {
|
|
|
| base::string16 domain_;
|
| AuthCredentials credentials_;
|
| + std::string channel_bindings_;
|
|
|
| // The base64-encoded string following "NTLM" in the "WWW-Authenticate" or
|
| // "Proxy-Authenticate" response header.
|
|
|