HomeSort by relevance Sort by last modified time
    Searched refs:WebCredential (Results 1 - 8 of 8) 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.h 42 class WebCredential;
57 void useCredential(WebCredential*);
61 WebCredential* proposedCredential() const;
74 mutable RefPtr<WebCredential> m_webCredential;
AuthenticationDecisionListener.h 36 class WebCredential;
47 void useCredential(WebCredential*);
AuthenticationDecisionListener.cpp 31 #include "WebCredential.h"
42 void AuthenticationDecisionListener::useCredential(WebCredential* 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());
  /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));
WKAPICast.h 60 class WebCredential;
88 WK_ADD_API_MAPPING(WKCredentialRef, WebCredential)

Completed in 1086 milliseconds