diff options
Diffstat (limited to 'WebCore/storage/StorageArea.h')
-rw-r--r-- | WebCore/storage/StorageArea.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/storage/StorageArea.h b/WebCore/storage/StorageArea.h index a64d44a..6081240 100644 --- a/WebCore/storage/StorageArea.h +++ b/WebCore/storage/StorageArea.h @@ -50,9 +50,9 @@ namespace WebCore { virtual unsigned length() const = 0; virtual String key(unsigned index) const = 0; virtual String getItem(const String& key) const = 0; - virtual void setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0; - virtual void removeItem(const String& key, Frame* sourceFrame) = 0; - virtual void clear(Frame* sourceFrame) = 0; + virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0; + virtual String removeItem(const String& key, Frame* sourceFrame) = 0; + virtual bool clear(Frame* sourceFrame) = 0; virtual bool contains(const String& key) const = 0; }; |