Index: net/http/http_auth_handler_ntlm.cc |
diff --git a/net/http/http_auth_handler_ntlm.cc b/net/http/http_auth_handler_ntlm.cc |
index de0fe290a3c53aad3e083373a2548cdaf98c1193..f3ef979d3967e33da6e8be14d9d29daa0340f268 100644 |
--- a/net/http/http_auth_handler_ntlm.cc |
+++ b/net/http/http_auth_handler_ntlm.cc |
@@ -30,13 +30,13 @@ bool HttpAuthHandlerNTLM::Init(HttpAuthChallengeTokenizer* tok) { |
} |
int HttpAuthHandlerNTLM::GenerateAuthTokenImpl( |
- const AuthCredentials* credentials, const HttpRequestInfo* request, |
- const CompletionCallback& callback, std::string* auth_token) { |
+ const AuthCredentials* credentials, |
+ const HttpRequestInfo* request, |
+ const CompletionCallback& callback, |
+ std::string* auth_token) { |
#if defined(NTLM_SSPI) |
return auth_sspi_.GenerateAuthToken( |
- credentials, |
- CreateSPN(origin_), |
- auth_token); |
+ credentials, CreateSPN(origin_), auth_token); |
#else // !defined(NTLM_SSPI) |
// TODO(cbentzel): Shouldn't be hitting this case. |
if (!credentials) { |
@@ -101,7 +101,8 @@ int HttpAuthHandlerNTLM::GenerateAuthTokenImpl( |
// The NTLM challenge header looks like: |
// WWW-Authenticate: NTLM auth-data |
HttpAuth::AuthorizationResult HttpAuthHandlerNTLM::ParseChallenge( |
- HttpAuthChallengeTokenizer* tok, bool initial_challenge) { |
+ HttpAuthChallengeTokenizer* tok, |
+ bool initial_challenge) { |
#if defined(NTLM_SSPI) |
// auth_sspi_ contains state for whether or not this is the initial challenge. |
return auth_sspi_.ParseChallenge(tok); |