summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_auth_handler_ntlm_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/http/http_auth_handler_ntlm_win.cc')
-rw-r--r--chromium/net/http/http_auth_handler_ntlm_win.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/net/http/http_auth_handler_ntlm_win.cc b/chromium/net/http/http_auth_handler_ntlm_win.cc
index 2c0bc7bef49..4fa74e60d4d 100644
--- a/chromium/net/http/http_auth_handler_ntlm_win.cc
+++ b/chromium/net/http/http_auth_handler_ntlm_win.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -22,7 +22,7 @@ int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
HttpAuthChallengeTokenizer* challenge,
HttpAuth::Target target,
const SSLInfo& ssl_info,
- const NetworkIsolationKey& network_isolation_key,
+ const NetworkAnonymizationKey& network_anonymization_key,
const url::SchemeHostPort& scheme_host_port,
CreateReason reason,
int digest_nonce_count,
@@ -36,7 +36,7 @@ int HttpAuthHandlerNTLM::Factory::CreateAuthHandler(
auto tmp_handler = std::make_unique<HttpAuthHandlerNTLM>(
sspi_library_.get(), http_auth_preferences());
if (!tmp_handler->InitFromChallenge(challenge, target, ssl_info,
- network_isolation_key, scheme_host_port,
+ network_anonymization_key, scheme_host_port,
net_log))
return ERR_INVALID_RESPONSE;
*handler = std::move(tmp_handler);