Searched defs:challengeID (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.cpp39 AuthenticationChallengeProxy::AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process) argument
41 , m_challengeID(challengeID)
H A DAuthenticationChallengeProxy.h50 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process) argument
52 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, process));
66 AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge&, uint64_t challengeID, WebProcessProxy*);
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.cpp70 uint64_t challengeID = generateAuthenticationChallengeID(); local
71 m_challenges.set(challengeID, authenticationChallenge);
73 WebProcess::shared().connection()->send(Messages::WebPageProxy::DidReceiveAuthenticationChallenge(frame->frameID(), authenticationChallenge, challengeID), frame->page()->pageID());
78 uint64_t challengeID = generateAuthenticationChallengeID(); local
79 m_challenges.set(challengeID, authenticationChallenge);
81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));
84 void AuthenticationManager::useCredentialForChallenge(uint64_t challengeID, const Credential& credential) argument
86 AuthenticationChallenge challenge = m_challenges.take(challengeID);
99 void AuthenticationManager::continueWithoutCredentialForChallenge(uint64_t challengeID) argument
101 AuthenticationChallenge challenge = m_challenges.take(challengeID);
113 cancelChallenge(uint64_t challengeID) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID) argument
101 RefPtr<AuthenticationChallengeProxy> authenticationChallengeProxy = AuthenticationChallengeProxy::create(authenticationChallenge, challengeID, m_webContext->process());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2861 void WebPageProxy::didReceiveAuthenticationChallenge(uint64_t frameID, const WebCore::AuthenticationChallenge& coreChallenge, uint64_t challengeID) argument
2866 RefPtr<AuthenticationChallengeProxy> authenticationChallenge = AuthenticationChallengeProxy::create(coreChallenge, challengeID, process());

Completed in 606 milliseconds