|
1 /* |
|
2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
|
3 * |
|
4 * Redistribution and use in source and binary forms, with or without |
|
5 * modification, are permitted provided that the following conditions |
|
6 * are met: |
|
7 * 1. Redistributions of source code must retain the above copyright |
|
8 * notice, this list of conditions and the following disclaimer. |
|
9 * 2. Redistributions in binary form must reproduce the above copyright |
|
10 * notice, this list of conditions and the following disclaimer in the |
|
11 * documentation and/or other materials provided with the distribution. |
|
12 * |
|
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
|
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
|
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
|
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
24 */ |
|
25 |
|
26 #ifndef WebURLAuthenticationChallenge_h |
|
27 #define WebURLAuthenticationChallenge_h |
|
28 |
|
29 #include "IWebURLAuthenticationChallenge.h" |
|
30 |
|
31 #pragma warning(push, 0) |
|
32 #include <WebCore/AuthenticationChallenge.h> |
|
33 #include <WebCore/COMPtr.h> |
|
34 #pragma warning(pop) |
|
35 |
|
36 class __declspec(uuid("FD3B2381-0BB6-4B59-AF09-0E599C8901CF")) WebURLAuthenticationChallenge : public IWebURLAuthenticationChallenge { |
|
37 public: |
|
38 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&); |
|
39 static WebURLAuthenticationChallenge* createInstance(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*); |
|
40 private: |
|
41 WebURLAuthenticationChallenge(const WebCore::AuthenticationChallenge&, IWebURLAuthenticationChallengeSender*); |
|
42 ~WebURLAuthenticationChallenge(); |
|
43 public: |
|
44 // IUnknown |
|
45 virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); |
|
46 virtual ULONG STDMETHODCALLTYPE AddRef(void); |
|
47 virtual ULONG STDMETHODCALLTYPE Release(void); |
|
48 |
|
49 // IWebURLAuthenticationChallenge |
|
50 virtual HRESULT STDMETHODCALLTYPE initWithProtectionSpace( |
|
51 /* [in] */ IWebURLProtectionSpace* space, |
|
52 /* [in] */ IWebURLCredential* proposedCredential, |
|
53 /* [in] */ int previousFailureCount, |
|
54 /* [in] */ IWebURLResponse* failureResponse, |
|
55 /* [in] */ IWebError* error, |
|
56 /* [in] */ IWebURLAuthenticationChallengeSender* sender); |
|
57 |
|
58 virtual HRESULT STDMETHODCALLTYPE initWithAuthenticationChallenge( |
|
59 /* [in] */ IWebURLAuthenticationChallenge* challenge, |
|
60 /* [in] */ IWebURLAuthenticationChallengeSender* sender); |
|
61 |
|
62 virtual HRESULT STDMETHODCALLTYPE error( |
|
63 /* [out, retval] */ IWebError** result); |
|
64 |
|
65 virtual HRESULT STDMETHODCALLTYPE failureResponse( |
|
66 /* [out, retval] */ IWebURLResponse** result); |
|
67 |
|
68 virtual HRESULT STDMETHODCALLTYPE previousFailureCount( |
|
69 /* [out, retval] */ UINT* result); |
|
70 |
|
71 virtual HRESULT STDMETHODCALLTYPE proposedCredential( |
|
72 /* [out, retval] */ IWebURLCredential** result); |
|
73 |
|
74 virtual HRESULT STDMETHODCALLTYPE protectionSpace( |
|
75 /* [out, retval] */ IWebURLProtectionSpace** result); |
|
76 |
|
77 virtual HRESULT STDMETHODCALLTYPE sender( |
|
78 /* [out, retval] */ IWebURLAuthenticationChallengeSender** sender); |
|
79 |
|
80 // WebURLAuthenticationChallenge |
|
81 const WebCore::AuthenticationChallenge& authenticationChallenge() const; |
|
82 |
|
83 protected: |
|
84 ULONG m_refCount; |
|
85 |
|
86 WebCore::AuthenticationChallenge m_authenticationChallenge; |
|
87 COMPtr<IWebURLAuthenticationChallengeSender> m_sender; |
|
88 }; |
|
89 |
|
90 |
|
91 #endif |