HomeSort by relevance Sort by last modified time
    Searched full:webcredential (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebCredential.cpp 27 #include "WebCredential.h"
31 WebCredential::WebCredential(const WebCore::Credential& credential)
36 const WebCore::Credential& WebCredential::core()
41 const String& WebCredential::user() const
WebCredential.h 38 class WebCredential : public APIObject {
42 static PassRefPtr<WebCredential> create(const WebCore::Credential& credential)
44 return adoptRef(new WebCredential(credential));
47 static PassRefPtr<WebCredential> create(WebString* username, WebString* password, WebCore::CredentialPersistence persistence)
49 return adoptRef(new WebCredential(WebCore::Credential(username->string(), password->string(), persistence)));
57 WebCredential(const WebCore::Credential&);
AuthenticationChallengeProxy.cpp 32 #include "WebCredential.h"
59 void AuthenticationChallengeProxy::useCredential(WebCredential* credential)
82 WebCredential* AuthenticationChallengeProxy::proposedCredential() const
85 m_webCredential = WebCredential::create(m_coreAuthenticationChallenge.proposedCredential());
AuthenticationChallengeProxy.h 42 class WebCredential;
57 void useCredential(WebCredential*);
61 WebCredential* proposedCredential() const;
74 mutable RefPtr<WebCredential> m_webCredential;
AuthenticationDecisionListener.cpp 31 #include "WebCredential.h"
42 void AuthenticationDecisionListener::useCredential(WebCredential* credential)
AuthenticationDecisionListener.h 36 class WebCredential;
47 void useCredential(WebCredential*);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKCredential.cpp 29 #include "WebCredential.h"
37 return toAPI(WebCredential::APIType);
42 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence));
WKAuthenticationChallenge.cpp 30 #include "WebCredential.h"
WKAPICast.h 60 class WebCredential;
88 WK_ADD_API_MAPPING(WKCredentialRef, WebCredential)
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallengeSenderCFNet.cpp 71 COMPtr<WebURLCredential> webCredential;
72 if (!credential || FAILED(credential->QueryInterface(__uuidof(WebURLCredential), (void**)&webCredential)))
75 m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential());
WebURLAuthenticationChallenge.cpp 129 COMPtr<WebURLCredential> webCredential(Query, proposedCredential);
130 if (!webCredential)
150 m_authenticationChallenge = AuthenticationChallenge(webSpace->protectionSpace(), webCredential->credential(),
WebDownloadCFNet.cpp 339 COMPtr<WebURLCredential> webCredential(Query, credential);
340 if (!webCredential)
343 RetainPtr<CFURLCredentialRef> cfCredential(AdoptCF, createCF(webCredential->credential()));
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 691 Credential webCredential(credential.user(), credential.password(), CredentialPersistenceForSession);
692 [[d->m_currentMacChallenge sender] useCredential:mac(webCredential) forAuthenticationChallenge:d->m_currentMacChallenge];
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->m_currentMacChallenge];
    [all...]
  /external/webkit/Source/WebKit2/
WebKit2.pro 172 UIProcess/Authentication/WebCredential.h \
375 UIProcess/Authentication/WebCredential.cpp \
GNUmakefile.am 362 Source/WebKit2/UIProcess/Authentication/WebCredential.cpp \
363 Source/WebKit2/UIProcess/Authentication/WebCredential.h \
    [all...]
ChangeLog-2011-02-16     [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 579 Credential webCredential(credential.user(), credential.password(), CredentialPersistenceNone);
580 RetainPtr<CFURLCredentialRef> cfCredential(AdoptCF, createCF(webCredential));
585 CredentialStorage::set(webCredential, challenge.protectionSpace(), urlToStore);
    [all...]
  /external/webkit/Source/WebKit2/win/
WebKit2.vcproj     [all...]
  /external/webkit/Source/WebKit2/WebKit2.xcodeproj/
project.pbxproj     [all...]

Completed in 573 milliseconds