summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/CookieJar.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/CookieJar.h')
-rw-r--r--WebCore/platform/CookieJar.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/WebCore/platform/CookieJar.h b/WebCore/platform/CookieJar.h
index 987543e..6159386 100644
--- a/WebCore/platform/CookieJar.h
+++ b/WebCore/platform/CookieJar.h
@@ -26,21 +26,15 @@
#ifndef CookieJar_h
#define CookieJar_h
-#include <wtf/Vector.h>
-
namespace WebCore {
- class Document;
class KURL;
class String;
-
- struct Cookie;
+ class Document;
String cookies(const Document*, const KURL&);
void setCookies(Document*, const KURL&, const String&);
bool cookiesEnabled(const Document*);
- bool getRawCookies(const Document*, const KURL&, Vector<Cookie>&);
- void deleteCookie(const Document*, const KURL&, const String&);
}