Searched refs:authenticationChallenge (Results 1 - 25 of 34) sorted by relevance

12

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Authentication/
H A DAuthenticationDecisionListener.cpp38 AuthenticationDecisionListener::AuthenticationDecisionListener(AuthenticationChallengeProxy* authenticationChallenge) argument
39 : m_challengeProxy(authenticationChallenge)
H A DAuthenticationDecisionListener.h40 static PassRefPtr<AuthenticationDecisionListener> create(AuthenticationChallengeProxy* authenticationChallenge) argument
42 return adoptRef(new AuthenticationDecisionListener(authenticationChallenge));
H A DAuthenticationChallengeProxy.cpp40 AuthenticationChallengeProxy::AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, CoreIPC::Connection* connection) argument
41 : m_coreAuthenticationChallenge(authenticationChallenge)
H A DAuthenticationChallengeProxy.h46 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, CoreIPC::Connection* connection) argument
48 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, connection));
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/curl/
H A DDownloadCurl.cpp61 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument
66 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge) argument
71 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge) argument
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_auth_request_private.h40 static PassRefPtr<EwkAuthRequest> create(WKAuthenticationChallengeRef authenticationChallenge) argument
42 return adoptRef(new EwkAuthRequest(authenticationChallenge));
55 explicit EwkAuthRequest(WKAuthenticationChallengeRef authenticationChallenge);
H A Dewk_auth_request.cpp39 EwkAuthRequest::EwkAuthRequest(WKAuthenticationChallengeRef authenticationChallenge) argument
40 : m_authenticationChallenge(authenticationChallenge)
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Authentication/
H A DAuthenticationManager.cpp67 uint64_t AuthenticationManager::establishIdentifierForChallenge(const WebCore::AuthenticationChallenge& authenticationChallenge) argument
72 m_challenges.set(challengeID, authenticationChallenge);
76 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const AuthenticationChallenge& authenticationChallenge) argument
81 m_process->send(Messages::WebPageProxy::DidReceiveAuthenticationChallenge(frame->frameID(), authenticationChallenge, establishIdentifierForChallenge(authenticationChallenge)), frame->page()->pageID());
85 void AuthenticationManager::didReceiveAuthenticationChallenge(uint64_t pageID, uint64_t frameID, const AuthenticationChallenge& authenticationChallenge) argument
90 m_process->send(Messages::NetworkProcessProxy::DidReceiveAuthenticationChallenge(pageID, frameID, authenticationChallenge, establishIdentifierForChallenge(authenticationChallenge)));
94 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const AuthenticationChallenge& authenticationChallenge) argument
96 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, establishIdentifierForChalleng
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebURLAuthenticationChallengeSenderCFNet.cpp48 m_client->receivedCancellation(webChallenge->authenticationChallenge());
59 m_client->receivedRequestToContinueWithoutCredential(webChallenge->authenticationChallenge());
75 m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential());
H A DWebURLAuthenticationChallenge.cpp45 WebURLAuthenticationChallenge::WebURLAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, argument
48 , m_authenticationChallenge(authenticationChallenge)
61 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge) argument
63 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, 0);
68 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge, argument
71 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, sender);
172 m_authenticationChallenge = AuthenticationChallenge(webChallenge->authenticationChallenge().cfURLAuthChallengeRef(), webSender->authenticationClient());
228 const AuthenticationChallenge& WebURLAuthenticationChallenge::authenticationChallenge() const function in class:WebURLAuthenticationChallenge
H A DWebURLAuthenticationChallenge.h78 const WebCore::AuthenticationChallenge& authenticationChallenge() const;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/cfnet/
H A DDownloadCFNet.cpp248 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument
250 ASSERT(authenticationChallenge.authenticationClient());
251 authenticationChallenge.authenticationClient()->receivedCredential(authenticationChallenge, credential);
254 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge) argument
256 ASSERT(authenticationChallenge.authenticationClient());
257 authenticationChallenge.authenticationClient()->receivedRequestToContinueWithoutCredential(authenticationChallenge);
260 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge) argument
262 ASSERT(authenticationChallenge
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/qt/
H A DDownloadQt.cpp87 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential) argument
92 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge) argument
97 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge) argument
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/mac/
H A DDownloadMac.mm111 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
113 [authenticationChallenge.sender() useCredential:mac(credential) forAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
116 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
118 [authenticationChallenge.sender() continueWithoutCredentialForAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
121 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
123 [authenticationChallenge.sender() cancelAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitAuthenticationDialog.cpp30 RefPtr<AuthenticationChallengeProxy> authenticationChallenge; member in struct:_WebKitAuthenticationDialogPrivate
42 priv->authenticationChallenge->listener()->useCredential(credential);
83 authDialog->priv->authWidget = webkitAuthenticationWidgetNew(authDialog->priv->authenticationChallenge->core(), credentialStorageMode);
141 GtkWidget* webkitAuthenticationDialogNew(AuthenticationChallengeProxy* authenticationChallenge, CredentialStorageMode mode) argument
144 authDialog->priv->authenticationChallenge = authenticationChallenge;
H A DWebKitLoaderClient.cpp131 static void didReceiveAuthenticationChallengeInFrame(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo) argument
133 webkitWebViewHandleAuthenticationChallenge(WEBKIT_WEB_VIEW(clientInfo), toImpl(authenticationChallenge));
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DAuthenticationChallengeManager.h51 void authenticationChallenge(const KURL&, const ProtectionSpace&, const Credential&, AuthenticationChallengeClient*, PageClientBlackBerry*);
H A DPageClientBlackBerry.h75 virtual void authenticationChallenge(const WebCore::KURL&, const WebCore::ProtectionSpace&, const WebCore::Credential&) = 0;
H A DAuthenticationChallengeManager.cpp97 m_activeChallenge->pageClient->authenticationChallenge(m_activeChallenge->url, m_activeChallenge->space, m_activeChallenge->credential);
156 void AuthenticationChallengeManager::authenticationChallenge(const KURL& url, const ProtectionSpace& space, function in class:WebCore::AuthenticationChallengeManager
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/
H A DDownload.cpp75 void Download::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge) argument
77 m_downloadManager.downloadsAuthenticationManager().didReceiveAuthenticationChallenge(this, authenticationChallenge);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Downloads/
H A DDownloadProxy.cpp110 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID) argument
115 RefPtr<AuthenticationChallengeProxy> authenticationChallengeProxy = AuthenticationChallengeProxy::create(authenticationChallenge, challengeID, m_webContext->networkingProcessConnection());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/Network/
H A DNetworkProcessProxy.cpp174 RefPtr<AuthenticationChallengeProxy> authenticationChallenge = AuthenticationChallengeProxy::create(coreChallenge, challengeID, connection()); local
175 page->didReceiveAuthenticationChallengeProxy(frameID, authenticationChallenge.release());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/efl/
H A DPageLoadClientEfl.cpp151 void PageLoadClientEfl::didReceiveAuthenticationChallengeInFrame(WKPageRef, WKFrameRef, WKAuthenticationChallengeRef authenticationChallenge, const void* clientInfo) argument
155 RefPtr<EwkAuthRequest> authenticationRequest = EwkAuthRequest::create(authenticationChallenge);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebLoaderClient.cpp185 void WebLoaderClient::didReceiveAuthenticationChallengeInFrame(WebPageProxy* page, WebFrameProxy* frame, AuthenticationChallengeProxy* authenticationChallenge) argument
190 m_client.didReceiveAuthenticationChallengeInFrame(toAPI(page), toAPI(frame), toAPI(authenticationChallenge), m_client.clientInfo);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKContext.h102 typedef void (*WKContextDownloadDidReceiveAuthenticationChallengeCallback)(WKContextRef context, WKDownloadRef download, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo);

Completed in 136 milliseconds

12