Searched refs:AuthenticationChallengeProxy (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationDecisionListener.h35 class AuthenticationChallengeProxy;
42 static PassRefPtr<AuthenticationDecisionListener> create(AuthenticationChallengeProxy* authenticationChallenge)
53 AuthenticationDecisionListener(AuthenticationChallengeProxy* authenticationChallenge);
57 AuthenticationChallengeProxy* m_challengeProxy;
H A DAuthenticationChallengeProxy.cpp27 #include "AuthenticationChallengeProxy.h"
39 AuthenticationChallengeProxy::AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process) function in class:WebKit::AuthenticationChallengeProxy
48 AuthenticationChallengeProxy::~AuthenticationChallengeProxy()
50 // If an outstanding AuthenticationChallengeProxy is being destroyed even though it hasn't been responded to yet,
59 void AuthenticationChallengeProxy::useCredential(WebCredential* credential)
72 void AuthenticationChallengeProxy::cancel()
82 WebCredential* AuthenticationChallengeProxy::proposedCredential() const
90 WebProtectionSpace* AuthenticationChallengeProxy
[all...]
H A DAuthenticationChallengeProxy.h46 class AuthenticationChallengeProxy : public APIObject { class in namespace:WebKit
50 static PassRefPtr<AuthenticationChallengeProxy> create(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
52 return adoptRef(new AuthenticationChallengeProxy(authenticationChallenge, challengeID, process));
55 ~AuthenticationChallengeProxy();
66 AuthenticationChallengeProxy(const WebCore::AuthenticationChallenge&, uint64_t challengeID, WebProcessProxy*);
H A DAuthenticationDecisionListener.cpp29 #include "AuthenticationChallengeProxy.h"
37 AuthenticationDecisionListener::AuthenticationDecisionListener(AuthenticationChallengeProxy* authenticationChallenge)
/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.h40 class AuthenticationChallengeProxy;
47 void didReceiveAuthenticationChallenge(WebContext*, DownloadProxy*, AuthenticationChallengeProxy*);
H A DWebLoaderClient.h43 class AuthenticationChallengeProxy;
68 void didReceiveAuthenticationChallengeInFrame(WebPageProxy*, WebFrameProxy*, AuthenticationChallengeProxy*);
H A DWebDownloadClient.cpp45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy, AuthenticationChallengeProxy* authenticationChallengeProxy)
H A DWebLoaderClient.cpp158 void WebLoaderClient::didReceiveAuthenticationChallengeInFrame(WebPageProxy* page, WebFrameProxy* frame, AuthenticationChallengeProxy* authenticationChallenge)
H A DWebPageProxy.cpp29 #include "AuthenticationChallengeProxy.h"
2866 RefPtr<AuthenticationChallengeProxy> authenticationChallenge = AuthenticationChallengeProxy::create(coreChallenge, challengeID, process());
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKAuthenticationChallenge.cpp29 #include "AuthenticationChallengeProxy.h"
38 return toAPI(AuthenticationChallengeProxy::APIType);
H A DWKAPICast.h50 class AuthenticationChallengeProxy;
81 WK_ADD_API_MAPPING(WKAuthenticationChallengeRef, AuthenticationChallengeProxy)
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp29 #include "AuthenticationChallengeProxy.h"
101 RefPtr<AuthenticationChallengeProxy> authenticationChallengeProxy = AuthenticationChallengeProxy::create(authenticationChallenge, challengeID, m_webContext->process());

Completed in 173 milliseconds