Home | History | Annotate | Download | only in win

Lines Matching refs:WebURLAuthenticationChallenge

28 #include "WebURLAuthenticationChallenge.h"
43 // WebURLAuthenticationChallenge ----------------------------------------------------------------
45 WebURLAuthenticationChallenge::WebURLAuthenticationChallenge(const AuthenticationChallenge& authenticationChallenge,
52 gClassNameCount.add("WebURLAuthenticationChallenge");
55 WebURLAuthenticationChallenge::~WebURLAuthenticationChallenge()
58 gClassNameCount.remove("WebURLAuthenticationChallenge");
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);
78 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::QueryInterface(REFIID riid, void** ppvObject)
84 *ppvObject = static_cast<WebURLAuthenticationChallenge*>(this);
94 ULONG STDMETHODCALLTYPE WebURLAuthenticationChallenge::AddRef(void)
99 ULONG STDMETHODCALLTYPE WebURLAuthenticationChallenge::Release(void)
110 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::initWithProtectionSpace(
118 LOG_ERROR("Calling the ala carte init for WebURLAuthenticationChallenge - is this really what you want to do?");
156 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::initWithAuthenticationChallenge(
163 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
181 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::error(
188 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::failureResponse(
195 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::previousFailureCount(
202 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::proposedCredential(
209 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::protectionSpace(
216 HRESULT STDMETHODCALLTYPE WebURLAuthenticationChallenge::sender(
227 // WebURLAuthenticationChallenge -------------------------------------------------------------------
228 const AuthenticationChallenge& WebURLAuthenticationChallenge::authenticationChallenge() const