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

Unified Diff: net/http/http_auth_handler_factory.h

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cbentzel@'s nits Created 5 years, 5 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
Index: net/http/http_auth_handler_factory.h
diff --git a/net/http/http_auth_handler_factory.h b/net/http/http_auth_handler_factory.h
index 06f7f34db55901118f053a082a4d2a2cb3a6862a..30b1896ce96ee00065d411cb0126202daa6fd9a0 100644
--- a/net/http/http_auth_handler_factory.h
+++ b/net/http/http_auth_handler_factory.h
@@ -169,7 +169,12 @@ class NET_EXPORT HttpAuthHandlerRegistryFactory
// |host_resolver| must not be NULL.
//
// |gssapi_library_name| specifies the name of the GSSAPI library that will
- // be loaded on all platforms except Windows.
+ // be loaded on Posix platforms other than Android. |gssapi_library_name| is
+ // ignored on Android and Windows.
+ //
+ // |auth_android_negotiate_account_type| is an Android account type, used to
+ // find the appropriate authenticator service on Android. It is ignored on
+ // non-Android platforms.
//
// |negotiate_disable_cname_lookup| and |negotiate_enable_port| both control
// how Negotiate does SPN generation, by default these should be false.
@@ -178,6 +183,7 @@ class NET_EXPORT HttpAuthHandlerRegistryFactory
URLSecurityManager* security_manager,
HostResolver* host_resolver,
const std::string& gssapi_library_name,
+ const std::string& auth_android_negotiate_account_type,
bool negotiate_disable_cname_lookup,
bool negotiate_enable_port);

Powered by Google App Engine
This is Rietveld 408576698