summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/storage/Storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/storage/Storage.h')
-rw-r--r--src/3rdparty/webkit/WebCore/storage/Storage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/webkit/WebCore/storage/Storage.h b/src/3rdparty/webkit/WebCore/storage/Storage.h
index ca7a32eb5..77c572003 100644
--- a/src/3rdparty/webkit/WebCore/storage/Storage.h
+++ b/src/3rdparty/webkit/WebCore/storage/Storage.h
@@ -28,8 +28,6 @@
#if ENABLE(DOM_STORAGE)
-#include "StorageArea.h"
-
#include <wtf/Forward.h>
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
@@ -37,13 +35,15 @@
namespace WebCore {
class Frame;
+ class StorageArea;
class String;
typedef int ExceptionCode;
class Storage : public RefCounted<Storage> {
public:
static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>);
-
+ ~Storage();
+
unsigned length() const;
String key(unsigned index, ExceptionCode&) const;
String getItem(const String&) const;