Clean up net::HttpAuthPreferences.

https://chromium-review.googlesource.com/c/chromium/src/+/727399
This commit is contained in:
deepak1556 2018-04-09 01:41:37 +05:30 committed by Samuel Attard
parent 83632f15a9
commit 6d241e972b
2 changed files with 3 additions and 3 deletions

View file

@ -410,7 +410,7 @@ void AllowNTLMCredentialsForDomainsInIO(
auto* auth_preferences = const_cast<net::HttpAuthPreferences*>(
auth_handler->http_auth_preferences());
if (auth_preferences)
auth_preferences->set_server_whitelist(domains);
auth_preferences->SetServerWhitelist(domains);
}
}

View file

@ -287,13 +287,13 @@ net::URLRequestContext* URLRequestContextGetter::GetURLRequestContext() {
// --auth-server-whitelist
if (command_line.HasSwitch(switches::kAuthServerWhitelist)) {
http_auth_preferences_->set_server_whitelist(
http_auth_preferences_->SetServerWhitelist(
command_line.GetSwitchValueASCII(switches::kAuthServerWhitelist));
}
// --auth-negotiate-delegate-whitelist
if (command_line.HasSwitch(switches::kAuthNegotiateDelegateWhitelist)) {
http_auth_preferences_->set_delegate_whitelist(
http_auth_preferences_->SetDelegateWhitelist(
command_line.GetSwitchValueASCII(
switches::kAuthNegotiateDelegateWhitelist));
}