summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_auth_controller.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-12 14:27:29 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-13 09:35:20 +0000
commitc30a6232df03e1efbd9f3b226777b07e087a1122 (patch)
treee992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/net/http/http_auth_controller.cc
parent7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff)
downloadqtwebengine-chromium-85-based.tar.gz
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/net/http/http_auth_controller.cc')
-rw-r--r--chromium/net/http/http_auth_controller.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/chromium/net/http/http_auth_controller.cc b/chromium/net/http/http_auth_controller.cc
index 1ef08d8c87a..fc335665bc1 100644
--- a/chromium/net/http/http_auth_controller.cc
+++ b/chromium/net/http/http_auth_controller.cc
@@ -231,8 +231,8 @@ bool HttpAuthController::SelectPreemptiveAuth(
std::unique_ptr<HttpAuthHandler> handler_preemptive;
int rv_create =
http_auth_handler_factory_->CreatePreemptiveAuthHandlerFromString(
- entry->auth_challenge(), target_, auth_origin_,
- entry->IncrementNonceCount(), net_log_, host_resolver_,
+ entry->auth_challenge(), target_, network_isolation_key_,
+ auth_origin_, entry->IncrementNonceCount(), net_log_, host_resolver_,
&handler_preemptive);
if (rv_create != OK)
return false;
@@ -328,9 +328,10 @@ int HttpAuthController::HandleAuthChallenge(
do {
if (!handler_.get() && can_send_auth) {
// Find the best authentication challenge that we support.
- HttpAuth::ChooseBestChallenge(
- http_auth_handler_factory_, *headers, ssl_info, target_, auth_origin_,
- disabled_schemes_, net_log_, host_resolver_, &handler_);
+ HttpAuth::ChooseBestChallenge(http_auth_handler_factory_, *headers,
+ ssl_info, network_isolation_key_, target_,
+ auth_origin_, disabled_schemes_, net_log_,
+ host_resolver_, &handler_);
if (handler_.get())
HistogramAuthEvent(handler_.get(), AUTH_EVENT_START);
}