Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: android_webview/browser/net/aw_url_request_context_getter.cc

Issue 1754013002: Add ntlm to the list of auth protocols (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/net/aw_url_request_context_getter.cc
diff --git a/android_webview/browser/net/aw_url_request_context_getter.cc b/android_webview/browser/net/aw_url_request_context_getter.cc
index 600ea178ee652d51347692f1416ff49ad7a5f377..08ef8dfd319162fe45ae9a0c082ab5e10a54e31b 100644
--- a/android_webview/browser/net/aw_url_request_context_getter.cc
+++ b/android_webview/browser/net/aw_url_request_context_getter.cc
@@ -311,7 +311,8 @@ AwURLRequestContextGetter::CreateAuthHandlerFactory(
// In Chrome this is configurable via the AuthSchemes policy. For WebView
// there is no interest to have it available so far.
- std::vector<std::string> supported_schemes = {"basic", "digest", "negotiate"};
+ std::vector<std::string> supported_schemes = {"basic", "digest", "ntlm",
+ "negotiate"};
http_auth_preferences_.reset(new net::HttpAuthPreferences(supported_schemes));
UpdateServerWhitelist();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698