summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-11-27 04:11:33 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-11-27 04:11:33 -0800
commitff2e3e9f1bdd1f49652c92473824e3a46c46e575 (patch)
tree44297e1d138668943f28ec7b09654dffba40516b
parent89d209fb97856ae61773dd203dbb5dd12c9f5a6c (diff)
parent3262ccd900ef9b2d764cf97df341a89e4b08d166 (diff)
downloadexternal_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.h15
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;
};
}