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

12

/macosx-10.10.1/WebKit2-7600.1.25/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.10.1/WebKit2-7600.1.25/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, IPC::Connection* connection) argument
41 : m_coreAuthenticationChallenge(authenticationChallenge)
H A DAuthenticationChallengeProxy.h46 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, IPC::Connection* connection) argument
48 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, connection));
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitAuthenticationRequest.cpp61 RefPtr<AuthenticationChallengeProxy> authenticationChallenge; member in struct:_WebKitAuthenticationRequestPrivate
134 WebKitAuthenticationRequest* webkitAuthenticationRequestCreate(AuthenticationChallengeProxy* authenticationChallenge, bool privateBrowsingEnabled) argument
137 request->priv->authenticationChallenge = authenticationChallenge;
144 return request->priv->authenticationChallenge.get();
188 const WebCore::Credential& credential = request->priv->authenticationChallenge->proposedCredential()->credential();
210 request->priv->host = request->priv->authenticationChallenge->protectionSpace()->host().utf8();
228 return request->priv->authenticationChallenge->protectionSpace()->port();
246 request->priv->realm = request->priv->authenticationChallenge->protectionSpace()->realm().utf8();
264 return toWebKitAuthenticationScheme(request->priv->authenticationChallenge
[all...]
H A DWebKitLoaderClient.cpp130 static void didReceiveAuthenticationChallengeInFrame(WKPageRef, WKFrameRef, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo) argument
132 webkitWebViewHandleAuthenticationChallenge(WEBKIT_WEB_VIEW(clientInfo), toImpl(authenticationChallenge));
H A DWebKitWebView.cpp1898 void webkitWebViewHandleAuthenticationChallenge(WebKitWebView* webView, AuthenticationChallengeProxy* authenticationChallenge) argument
1901 webView->priv->authenticationRequest = adoptGRef(webkitAuthenticationRequestCreate(authenticationChallenge, privateBrowsingEnabled));
/macosx-10.10.1/WebKit-7600.1.25/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 DWebURLAuthenticationChallengeSenderCurl.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;
H A DWebDownloadCFNet.cpp332 CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
351 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
/macosx-10.10.1/WebKit2-7600.1.25/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.10.1/WebKit2-7600.1.25/Shared/Downloads/mac/
H A DDownloadMac.mm113 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
115 [authenticationChallenge.sender() useCredential:mac(credential) forAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
118 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
120 [authenticationChallenge.sender() continueWithoutCredentialForAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
123 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
125 [authenticationChallenge.sender() cancelAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
128 void Download::receivedRequestToPerformDefaultHandling(const AuthenticationChallenge& authenticationChallenge)
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Downloads/
H A DDownload.cpp67 void Download::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge) argument
69 m_downloadManager.downloadsAuthenticationManager().didReceiveAuthenticationChallenge(this, authenticationChallenge);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Downloads/
H A DDownloadProxy.cpp111 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID) argument
116 RefPtr<AuthenticationChallengeProxy> authenticationChallengeProxy = AuthenticationChallengeProxy::create(authenticationChallenge, challengeID, m_webContext->networkingProcessConnection());
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Network/
H A DNetworkProcessProxy.cpp180 RefPtr<AuthenticationChallengeProxy> authenticationChallenge = AuthenticationChallengeProxy::create(coreChallenge, challengeID, connection()); local
181 page->didReceiveAuthenticationChallengeProxy(frameID, authenticationChallenge.release());
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DPageLoadClientEfl.cpp149 void PageLoadClientEfl::didReceiveAuthenticationChallengeInFrame(WKPageRef, WKFrameRef, WKAuthenticationChallengeRef authenticationChallenge, const void* clientInfo) argument
153 RefPtr<EwkAuthRequest> authenticationRequest = EwkAuthRequest::create(authenticationChallenge);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKContextDownloadClient.h32 typedef void (*WKContextDownloadDidReceiveAuthenticationChallengeCallback)(WKContextRef context, WKDownloadRef download, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo);
H A DWKPageLoaderClient.h69 typedef void (*WKPageDidReceiveAuthenticationChallengeInFrameCallback)(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo);
H A DWKPage.cpp918 virtual void didReceiveAuthenticationChallengeInFrame(WebPageProxy* page, WebFrameProxy* frame, AuthenticationChallengeProxy* authenticationChallenge) override
923 m_client.didReceiveAuthenticationChallengeInFrame(toAPI(page), toAPI(frame), toAPI(authenticationChallenge), m_client.base.clientInfo);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DNavigationState.mm706 void NavigationState::LoaderClient::didReceiveAuthenticationChallengeInFrame(WebPageProxy*, WebFrameProxy*, AuthenticationChallengeProxy* authenticationChallenge)
710 ASSERT(authenticationChallenge->protectionSpace()->authenticationScheme() != WebCore::ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested);
713 authenticationChallenge->listener()->performDefaultHandling();
717 RefPtr<AuthenticationChallengeProxy> challenge = authenticationChallenge;
719 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate.get()) webView:m_navigationState.m_webView didReceiveAuthenticationChallenge:wrapper(*authenticationChallenge)
761 [static_cast<id <WKNavigationDelegatePrivate>>(navigationDelegate.get()) _webView:m_navigationState.m_webView didReceiveAuthenticationChallenge:wrapper(*authenticationChallenge)];
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBrowsingContextController.mm505 static void didReceiveAuthenticationChallengeInFrame(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo)
511 [(id <WKBrowsingContextLoadDelegatePrivate>)loadDelegate browsingContextController:browsingContext didReceiveAuthenticationChallenge:wrapper(*toImpl(authenticationChallenge))];

Completed in 170 milliseconds

12