HomeSort by relevance Sort by last modified time
    Searched refs:challengeID (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 70 uint64_t challengeID = generateAuthenticationChallengeID();
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();
79 m_challenges.set(challengeID, authenticationChallenge);
81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));
84 void AuthenticationManager::useCredentialForChallenge(uint64_t challengeID, const Credential& credential)
86 AuthenticationChallenge challenge = m_challenges.take(challengeID);
99 void AuthenticationManager::continueWithoutCredentialForChallenge(uint64_t challengeID)
101 AuthenticationChallenge challenge = m_challenges.take(challengeID);
    [all...]
AuthenticationManager.h 58 void useCredentialForChallenge(uint64_t challengeID, const WebCore::Credential&);
59 void continueWithoutCredentialForChallenge(uint64_t challengeID);
60 void cancelChallenge(uint64_t challengeID);
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
AuthenticationChallengeProxy.h 50 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
52 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, process));
66 AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge&, uint64_t challengeID, WebProcessProxy*);
AuthenticationChallengeProxy.cpp 39 AuthenticationChallengeProxy::AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
41 , m_challengeID(challengeID)
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID)
101 RefPtr<AuthenticationChallengeProxy> authenticationChallengeProxy = AuthenticationChallengeProxy::create(authenticationChallenge, challengeID, m_webContext->process());
DownloadProxy.h 73 void didReceiveAuthenticationChallenge(const WebCore::AuthenticationChallenge&, uint64_t challengeID);
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 678 void didReceiveAuthenticationChallenge(uint64_t frameID, const WebCore::AuthenticationChallenge&, uint64_t challengeID);
    [all...]
WebPageProxy.cpp     [all...]

Completed in 60 milliseconds