Searched refs:WebCredential (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Authentication/
H A DWebCredential.cpp27 #include "WebCredential.h"
33 WebCredential::WebCredential(const WebCore::Credential& credential) function in class:WebKit::WebCredential
38 WebCredential::WebCredential(WebCertificateInfo* certificateInfo) function in class:WebKit::WebCredential
43 WebCredential::~WebCredential()
47 WebCertificateInfo* WebCredential::certificateInfo()
52 const WebCore::Credential& WebCredential::core()
57 const String& WebCredential
[all...]
H A DWebCredential.h40 class WebCredential : public TypedAPIObject<APIObject::TypeCredential> { class in namespace:WebKit
42 ~WebCredential();
44 static PassRefPtr<WebCredential> create(const WebCore::Credential& credential)
46 return adoptRef(new WebCredential(credential));
49 static PassRefPtr<WebCredential> create(WebString* username, WebString* password, WebCore::CredentialPersistence persistence)
51 return adoptRef(new WebCredential(WebCore::Credential(username->string(), password->string(), persistence)));
54 static PassRefPtr<WebCredential> create(WebCertificateInfo* certificateInfo)
56 return adoptRef(new WebCredential(certificateInfo));
66 explicit WebCredential(const WebCore::Credential&);
67 explicit WebCredential(WebCertificateInf
[all...]
H A DAuthenticationDecisionListener.h36 class WebCredential;
45 void useCredential(WebCredential*);
H A DAuthenticationChallengeProxy.h41 class WebCredential;
53 void useCredential(WebCredential*);
57 WebCredential* proposedCredential() const;
69 mutable RefPtr<WebCredential> m_webCredential;
H A DAuthenticationDecisionListener.cpp32 #include "WebCredential.h"
43 void AuthenticationDecisionListener::useCredential(WebCredential* credential)
H A DAuthenticationChallengeProxy.cpp34 #include "WebCredential.h"
60 void AuthenticationChallengeProxy::useCredential(WebCredential* credential)
86 WebCredential* AuthenticationChallengeProxy::proposedCredential() const
89 m_webCredential = WebCredential::create(m_coreAuthenticationChallenge.proposedCredential());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKCredential.cpp30 #include "WebCredential.h"
38 return toAPI(WebCredential::APIType);
43 RefPtr<WebCredential> credential = WebCredential::create(toImpl(username), toImpl(password), toCredentialPersistence(persistence));
49 RefPtr<WebCredential> credential = WebCredential::create(toImpl(certificateInfo));
H A DWKAPICast.h69 class WebCredential;
113 WK_ADD_API_MAPPING(WKCredentialRef, WebCredential)
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitAuthenticationDialog.cpp24 #include "WebCredential.h"
39 static void webkitAuthenticationDialogAuthenticate(WebKitAuthenticationDialog* authDialog, WebCredential* credential)
49 RefPtr<WebCredential> webCredential = WebCredential::create(webkitAuthenticationWidgetCreateCredential(WEBKIT_AUTHENTICATION_WIDGET(priv->authWidget)));

Completed in 292 milliseconds