本文整理汇总了C++中AuthenticationClient::receivedCancellation方法的典型用法代码示例。如果您正苦于以下问题:C++ AuthenticationClient::receivedCancellation方法的具体用法?C++ AuthenticationClient::receivedCancellation怎么用?C++ AuthenticationClient::receivedCancellation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AuthenticationClient
的用法示例。
在下文中一共展示了AuthenticationClient::receivedCancellation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: cancelSingleChallenge
void AuthenticationManager::cancelSingleChallenge(uint64_t challengeID)
{
AuthenticationChallenge challenge = m_challenges.take(challengeID);
ASSERT(!challenge.isNull());
AuthenticationClient* coreClient = challenge.authenticationClient();
if (!coreClient) {
// FIXME: The authentication client is null for downloads, but it can also be null for canceled loads.
// We should not call Download::receivedCredential in the latter case.
Download::receivedCancellation(challenge);
return;
}
coreClient->receivedCancellation(challenge);
}
示例2: cancelSingleChallenge
void AuthenticationManager::cancelSingleChallenge(uint64_t challengeID)
{
auto challenge = m_challenges.take(challengeID);
ASSERT(!challenge.challenge.isNull());
AuthenticationClient* coreClient = challenge.challenge.authenticationClient();
#if USE(NETWORK_SESSION)
if (challenge.completionHandler) {
ASSERT(!coreClient);
challenge.completionHandler(AuthenticationChallengeDisposition::Cancel, Credential());
return;
}
#endif
if (coreClient)
coreClient->receivedCancellation(challenge.challenge);
else
receivedCancellation(challenge.challenge);
}
示例3: cancelSingleChallenge
void AuthenticationManager::cancelSingleChallenge(uint64_t challengeID)
{
auto challenge = m_challenges.take(challengeID);
ASSERT(!challenge.challenge.isNull());
AuthenticationClient* coreClient = challenge.challenge.authenticationClient();
#if USE(NETWORK_SESSION)
if (challenge.completionHandler) {
ASSERT(!coreClient);
challenge.completionHandler(AuthenticationChallengeDisposition::Cancel, Credential());
return;
}
#else
if (!coreClient) {
// FIXME: The authentication client is null for downloads, but it can also be null for canceled loads.
// We should not call Download::receivedCredential in the latter case.
Download::receivedCancellation(challenge.challenge);
return;
}
#endif
ASSERT(coreClient);
coreClient->receivedCancellation(challenge.challenge);
}