Searched defs:authenticationScheme (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
H A DProtectionSpace.cpp50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme) argument
55 , m_authenticationScheme(authenticationScheme)
88 ProtectionSpaceAuthenticationScheme ProtectionSpace::authenticationScheme() const function in class:WebCore::ProtectionSpace
117 if (a.authenticationScheme() != b.authenticationScheme())
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DWebProtectionSpace.cpp68 WebCore::ProtectionSpaceAuthenticationScheme WebProtectionSpace::authenticationScheme() const function in class:WebKit::WebProtectionSpace
70 return m_coreProtectionSpace.authenticationScheme();
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h148 encoder->encode(CoreIPC::In(space.host(), space.port(), static_cast<uint32_t>(space.serverType()), space.realm(), static_cast<uint32_t>(space.authenticationScheme())));
157 uint32_t authenticationScheme; local
159 if (!decoder->decode(CoreIPC::Out(host, port, serverType, realm, authenticationScheme)))
162 space = WebCore::ProtectionSpace(host, port, static_cast<WebCore::ProtectionSpaceServerType>(serverType), realm, static_cast<WebCore::ProtectionSpaceAuthenticationScheme>(authenticationScheme));

Completed in 66 milliseconds