Home
last modified time | relevance | path

Searched refs:supported_schemes (Results 1 – 3 of 3) sorted by relevance

/external/chromium/net/http/
Dhttp_auth_handler_factory.cc73 bool IsSupportedScheme(const std::vector<std::string>& supported_schemes, in IsSupportedScheme() argument
76 supported_schemes.begin(), supported_schemes.end(), scheme); in IsSupportedScheme()
77 return it != supported_schemes.end(); in IsSupportedScheme()
124 const std::vector<std::string>& supported_schemes, in Create() argument
132 if (IsSupportedScheme(supported_schemes, "basic")) in Create()
135 if (IsSupportedScheme(supported_schemes, "digest")) in Create()
138 if (IsSupportedScheme(supported_schemes, "ntlm")) { in Create()
147 if (IsSupportedScheme(supported_schemes, "negotiate")) { in Create()
Dhttp_auth_handler_factory.h177 const std::vector<std::string>& supported_schemes,
/external/chromium/chrome/browser/
Dio_thread.cc575 std::vector<std::string> supported_schemes; in CreateDefaultAuthHandlerFactory() local
576 base::SplitString(auth_schemes_, ',', &supported_schemes); in CreateDefaultAuthHandlerFactory()
579 supported_schemes, in CreateDefaultAuthHandlerFactory()