Home | History | Annotate | Download | only in Authentication

Lines Matching refs:challenge

86     AuthenticationChallenge challenge = m_challenges.take(challengeID);
87 ASSERT(!challenge.isNull());
88 AuthenticationClient* coreClient = challenge.authenticationClient();
90 // This authentication challenge comes from a download.
91 Download::receivedCredential(challenge, credential);
96 coreClient->receivedCredential(challenge, credential);
101 AuthenticationChallenge challenge = m_challenges.take(challengeID);
102 ASSERT(!challenge.isNull());
103 AuthenticationClient* coreClient = challenge.authenticationClient();
105 // This authentication challenge comes from a download.
106 Download::receivedRequestToContinueWithoutCredential(challenge);
110 coreClient->receivedRequestToContinueWithoutCredential(challenge);
115 AuthenticationChallenge challenge = m_challenges.take(challengeID);
116 ASSERT(!challenge.isNull());
117 AuthenticationClient* coreClient = challenge.authenticationClient();
119 // This authentication challenge comes from a download.
120 Download::receivedCancellation(challenge);
124 coreClient->receivedCancellation(challenge);