OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AuthenticationChallengeProxy
(Results
1 - 12
of
12
) sorted by null
/external/webkit/Source/WebKit2/UIProcess/Authentication/
AuthenticationDecisionListener.h
35
class
AuthenticationChallengeProxy
;
42
static PassRefPtr<AuthenticationDecisionListener> create(
AuthenticationChallengeProxy
* authenticationChallenge)
53
AuthenticationDecisionListener(
AuthenticationChallengeProxy
* authenticationChallenge);
57
AuthenticationChallengeProxy
* m_challengeProxy;
AuthenticationChallengeProxy.cpp
27
#include "
AuthenticationChallengeProxy
.h"
39
AuthenticationChallengeProxy
::
AuthenticationChallengeProxy
(const WebCore::AuthenticationChallenge& authenticationChallenge, uint64_t challengeID, WebProcessProxy* process)
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
::protectionSpace() cons
[
all
...]
AuthenticationChallengeProxy.h
46
class
AuthenticationChallengeProxy
: public APIObject {
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*);
AuthenticationDecisionListener.cpp
29
#include "
AuthenticationChallengeProxy
.h"
37
AuthenticationDecisionListener::AuthenticationDecisionListener(
AuthenticationChallengeProxy
* authenticationChallenge)
/external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.h
40
class
AuthenticationChallengeProxy
;
47
void didReceiveAuthenticationChallenge(WebContext*, DownloadProxy*,
AuthenticationChallengeProxy
*);
WebLoaderClient.h
43
class
AuthenticationChallengeProxy
;
68
void didReceiveAuthenticationChallengeInFrame(WebPageProxy*, WebFrameProxy*,
AuthenticationChallengeProxy
*);
WebDownloadClient.cpp
45
void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy,
AuthenticationChallengeProxy
*
authenticationChallengeProxy
)
50
m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(
authenticationChallengeProxy
), m_client.clientInfo);
WebLoaderClient.cpp
158
void WebLoaderClient::didReceiveAuthenticationChallengeInFrame(WebPageProxy* page, WebFrameProxy* frame,
AuthenticationChallengeProxy
* authenticationChallenge)
WebPageProxy.cpp
29
#include "
AuthenticationChallengeProxy
.h"
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/API/C/
WKAuthenticationChallenge.cpp
29
#include "
AuthenticationChallengeProxy
.h"
38
return toAPI(
AuthenticationChallengeProxy
::APIType);
WKAPICast.h
50
class
AuthenticationChallengeProxy
;
81
WK_ADD_API_MAPPING(WKAuthenticationChallengeRef,
AuthenticationChallengeProxy
)
/external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp
29
#include "
AuthenticationChallengeProxy
.h"
101
RefPtr<
AuthenticationChallengeProxy
>
authenticationChallengeProxy
=
AuthenticationChallengeProxy
::create(authenticationChallenge, challengeID, m_webContext->process());
102
m_webContext->downloadClient().didReceiveAuthenticationChallenge(m_webContext, this,
authenticationChallengeProxy
.get());
Completed in 34 milliseconds