summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/network/NetworkingContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/network/NetworkingContext.h')
-rw-r--r--Source/WebCore/platform/network/NetworkingContext.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/WebCore/platform/network/NetworkingContext.h b/Source/WebCore/platform/network/NetworkingContext.h
index f2b10c445..046085c2f 100644
--- a/Source/WebCore/platform/network/NetworkingContext.h
+++ b/Source/WebCore/platform/network/NetworkingContext.h
@@ -35,6 +35,10 @@ class QUrl;
QT_END_NAMESPACE
#endif
+#if USE(SOUP)
+typedef struct _SoupSession SoupSession;
+#endif
+
namespace WebCore {
class ResourceError;
@@ -66,6 +70,10 @@ public:
virtual ResourceError blockedError(const ResourceRequest&) const = 0;
#endif
+#if USE(SOUP)
+ virtual SoupSession* soupSession() const = 0;
+#endif
+
protected:
NetworkingContext() { }
};