Home
last modified time | relevance | path

Searched refs:webCredential (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/win/
DWebURLAuthenticationChallengeSenderCFNet.cpp71 COMPtr<WebURLCredential> webCredential; in useCredential() local
72 …edential || FAILED(credential->QueryInterface(__uuidof(WebURLCredential), (void**)&webCredential))) in useCredential()
75 …m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential()); in useCredential()
DWebURLAuthenticationChallenge.cpp129 COMPtr<WebURLCredential> webCredential(Query, proposedCredential); in initWithProtectionSpace() local
130 if (!webCredential) in initWithProtectionSpace()
150 …m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->cr… in initWithProtectionSpace()
DWebDownloadCFNet.cpp339 COMPtr<WebURLCredential> webCredential(Query, credential); in useCredential() local
340 if (!webCredential) in useCredential()
343 RetainPtr<CFURLCredentialRef> cfCredential(AdoptCF, createCF(webCredential->credential())); in useCredential()
/external/webkit/Source/WebCore/platform/network/cf/
DResourceHandleCFNet.cpp579 … Credential webCredential(credential.user(), credential.password(), CredentialPersistenceNone); in receivedCredential() local
580 RetainPtr<CFURLCredentialRef> cfCredential(AdoptCF, createCF(webCredential)); in receivedCredential()
585 CredentialStorage::set(webCredential, challenge.protectionSpace(), urlToStore); in receivedCredential()
/external/webkit/Source/WebCore/platform/network/mac/
DResourceHandleMac.mm691 …Credential webCredential(credential.user(), credential.password(), CredentialPersistenceForSession…
692 …[[d->m_currentMacChallenge sender] useCredential:mac(webCredential) forAuthenticationChallenge:d->…
699 Credential webCredential(credential, CredentialPersistenceNone);
703 …CredentialStorage::set(webCredential, core([d->m_currentMacChallenge protectionSpace]), urlToStore…
704 …[[d->m_currentMacChallenge sender] useCredential:mac(webCredential) forAuthenticationChallenge:d->…