Index: Source/WebCore/platform/network/ResourceHandleInternal.h |
diff --git a/Source/WebCore/platform/network/ResourceHandleInternal.h b/Source/WebCore/platform/network/ResourceHandleInternal.h |
index e8c4eeb0925a35e05a6b24267d016d2f5229ff6a..d6fd3f0d26999bc95120dda0e63024eb7730b62d 100644 |
--- a/Source/WebCore/platform/network/ResourceHandleInternal.h |
+++ b/Source/WebCore/platform/network/ResourceHandleInternal.h |
@@ -55,15 +55,6 @@ |
class Frame; |
#endif |
-#if PLATFORM(QT) |
-QT_BEGIN_NAMESPACE |
-class QWebNetworkJob; |
-QT_END_NAMESPACE |
-namespace WebCore { |
-class QNetworkReplyHandler; |
-} |
-#endif |
- |
#if PLATFORM(MAC) |
OBJC_CLASS NSURLAuthenticationChallenge; |
OBJC_CLASS NSURLConnection; |
@@ -119,9 +110,6 @@ namespace WebCore { |
, m_bodyDataSent(0) |
, m_redirectCount(0) |
#endif |
-#if PLATFORM(QT) |
- , m_job(0) |
-#endif |
#if PLATFORM(MAC) |
, m_startWhenScheduled(false) |
, m_needsSiteSpecificQuirks(false) |
@@ -208,16 +196,6 @@ namespace WebCore { |
SoupSession* soupSession(); |
int m_redirectCount; |
#endif |
-#if PLATFORM(GTK) |
- struct { |
- Credential credential; |
- AuthenticationChallenge challenge; |
- } m_credentialDataToSaveInPersistentStore; |
-#endif |
-#if PLATFORM(QT) |
- QNetworkReplyHandler* m_job; |
-#endif |
- |
#if PLATFORM(MAC) |
// We need to keep a reference to the original challenge to be able to cancel it. |
// It is almost identical to m_currentWebChallenge.nsURLAuthenticationChallenge(), but has a different sender. |