diff options
Diffstat (limited to 'WebCore/platform/CookieJar.h')
-rw-r--r-- | WebCore/platform/CookieJar.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/WebCore/platform/CookieJar.h b/WebCore/platform/CookieJar.h index 38efd04..22627f2 100644 --- a/WebCore/platform/CookieJar.h +++ b/WebCore/platform/CookieJar.h @@ -26,6 +26,10 @@ #ifndef CookieJar_h #define CookieJar_h +#if USE(SOUP) +#include <libsoup/soup.h> +#endif + namespace WebCore { class KURL; @@ -35,7 +39,9 @@ namespace WebCore { String cookies(const Document* document, const KURL&); void setCookies(Document* document, const KURL&, const KURL& policyBaseURL, const String&); bool cookiesEnabled(const Document* document); - +#if USE(SOUP) + SoupCookieJar* getCookieJar(void); +#endif } #endif |