diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-27 04:11:33 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-27 04:11:33 -0800 |
| commit | ff2e3e9f1bdd1f49652c92473824e3a46c46e575 (patch) | |
| tree | 44297e1d138668943f28ec7b09654dffba40516b | |
| parent | 89d209fb97856ae61773dd203dbb5dd12c9f5a6c (diff) | |
| parent | 3262ccd900ef9b2d764cf97df341a89e4b08d166 (diff) | |
| download | external_webkit-ff2e3e9f1bdd1f49652c92473824e3a46c46e575.zip external_webkit-ff2e3e9f1bdd1f49652c92473824e3a46c46e575.tar.gz external_webkit-ff2e3e9f1bdd1f49652c92473824e3a46c46e575.tar.bz2 | |
Merge change I49a4a258 into eclair-mr2
* changes:
Removes superfluous code from Android implementation of AuthenticationChallenge.
| -rw-r--r-- | WebCore/platform/network/android/AuthenticationChallenge.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/WebCore/platform/network/android/AuthenticationChallenge.h b/WebCore/platform/network/android/AuthenticationChallenge.h index 6e6d95b..e272d60 100644 --- a/WebCore/platform/network/android/AuthenticationChallenge.h +++ b/WebCore/platform/network/android/AuthenticationChallenge.h @@ -28,27 +28,12 @@ #define AuthenticationChallenge_h #include "AuthenticationChallengeBase.h" -#include "ResourceHandle.h" -#include <wtf/RefPtr.h> namespace WebCore { class ResourceHandle; class AuthenticationChallenge : public AuthenticationChallengeBase { -public: - AuthenticationChallenge() - { - } - - AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) - : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error) - { - } - - ResourceHandle* sourceHandle() const { return m_sourceHandle.get(); } - - RefPtr<ResourceHandle> m_sourceHandle; }; } |
