Home | History | Annotate | Download | only in Authentication

Lines Matching refs:challengeID

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);
113 void AuthenticationManager::cancelChallenge(uint64_t challengeID)
115 AuthenticationChallenge challenge = m_challenges.take(challengeID);