HomeSort by relevance Sort by last modified time
    Searched refs:authenticationChallenge (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/Authentication/
AuthenticationDecisionListener.h 42 static PassRefPtr<AuthenticationDecisionListener> create(AuthenticationChallengeProxy* authenticationChallenge)
44 return adoptRef(new AuthenticationDecisionListener(authenticationChallenge));
53 AuthenticationDecisionListener(AuthenticationChallengeProxy* authenticationChallenge);
AuthenticationDecisionListener.cpp 37 AuthenticationDecisionListener::AuthenticationDecisionListener(AuthenticationChallengeProxy* authenticationChallenge)
38 : m_challengeProxy(authenticationChallenge)
AuthenticationChallengeProxy.h 30 #include <WebCore/AuthenticationChallenge.h>
50 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
52 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, process));
66 AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge&, uint64_t challengeID, WebProcessProxy*);
70 WebCore::AuthenticationChallenge m_coreAuthenticationChallenge;
AuthenticationChallengeProxy.cpp 39 AuthenticationChallengeProxy::AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
40 : m_coreAuthenticationChallenge(authenticationChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
DownloadCurl.cpp 61 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
66 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
71 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
DownloadQt.cpp 65 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
70 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
75 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
DownloadSoup.cpp 66 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
71 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
76 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallengeSenderCFNet.cpp 48 m_client->receivedCancellation(webChallenge->authenticationChallenge());
59 m_client->receivedRequestToContinueWithoutCredential(webChallenge->authenticationChallenge());
75 m_client->receivedCredential(webChallenge->authenticationChallenge(), webCredential->credential());
WebURLAuthenticationChallenge.cpp 45 WebURLAuthenticationChallenge::WebURLAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge,
48 , m_authenticationChallenge(authenticationChallenge)
61 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge)
63 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, 0);
68 WebURLAuthenticationChallenge* WebURLAuthenticationChallenge::createInstance(const AuthenticationChallenge& authenticationChallenge,
71 WebURLAuthenticationChallenge* instance = new WebURLAuthenticationChallenge(authenticationChallenge, sender);
147 // FIXME: After we change AuthenticationChallenge to use "ResourceHandle" as the abstract "Sender" or "Source of this Auth Challenge", then we'l
    [all...]
WebURLAuthenticationChallenge.h 30 #include <WebCore/AuthenticationChallenge.h>
35 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&);
36 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
38 WebURLAuthenticationChallenge(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*);
78 const WebCore::AuthenticationChallenge& authenticationChallenge() const;
83 WebCore::AuthenticationChallenge m_authenticationChallenge;
WebDownloadCFNet.cpp 327 CFURLDownloadUseCredential(m_download.get(), 0, webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
346 CFURLDownloadUseCredential(m_download.get(), cfCredential.get(), webChallenge->authenticationChallenge().cfURLAuthChallengeRef());
394 WebURLAuthenticationChallenge::createInstance(AuthenticationChallenge(challenge, 0), this));
  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 37 #include <WebCore/AuthenticationChallenge.h>
65 void AuthenticationManager::didReceiveAuthenticationChallenge(WebFrame* frame, const AuthenticationChallenge& authenticationChallenge)
71 m_challenges.set(challengeID, authenticationChallenge);
73 WebProcess::shared().connection()->send(Messages::WebPageProxy::DidReceiveAuthenticationChallenge(frame->frameID(), authenticationChallenge, challengeID), frame->page()->pageID());
76 void AuthenticationManager::didReceiveAuthenticationChallenge(Download* download, const AuthenticationChallenge& authenticationChallenge)
79 m_challenges.set(challengeID, authenticationChallenge);
81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));
86 AuthenticationChallenge challenge = m_challenges.take(challengeID)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 181 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
183 [authenticationChallenge.sender() useCredential:mac(credential) forAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
186 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
188 [authenticationChallenge.sender() continueWithoutCredentialForAuthenticationChallenge:authenticationChallenge.nsURLAuthenticationChallenge()];
191 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge, uint64_t challengeID)
101 RefPtr<AuthenticationChallengeProxy> authenticationChallengeProxy = AuthenticationChallengeProxy::create(authenticationChallenge, challengeID, m_webContext->process());
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 76 void Download::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge)
78 AuthenticationManager::shared().didReceiveAuthenticationChallenge(this, authenticationChallenge);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DownloadCFNet.cpp 211 void Download::receivedCredential(const AuthenticationChallenge& authenticationChallenge, const Credential& credential)
216 void Download::receivedRequestToContinueWithoutCredential(const AuthenticationChallenge& authenticationChallenge)
221 void Download::receivedCancellation(const AuthenticationChallenge& authenticationChallenge)
  /external/webkit/Source/WebKit2/UIProcess/
WebLoaderClient.cpp 158 void WebLoaderClient::didReceiveAuthenticationChallengeInFrame(WebPageProxy* page, WebFrameProxy* frame, AuthenticationChallengeProxy* authenticationChallenge)
163 m_client.didReceiveAuthenticationChallengeInFrame(toAPI(page), toAPI(frame), toAPI(authenticationChallenge), m_client.clientInfo);
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 74 typedef void (*WKContextDownloadDidReceiveAuthenticationChallengeCallback)(WKContextRef context, WKDownloadRef download, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo);
WKPage.h 68 typedef void (*WKPageDidReceiveAuthenticationChallengeInFrameCallback)(WKPageRef page, WKFrameRef frame, WKAuthenticationChallengeRef authenticationChallenge, const void *clientInfo);

Completed in 201 milliseconds