~ubuntu-branches/ubuntu/lucid/webkit/lucid-updates

« back to all changes in this revision

Viewing changes to WebCore/storage/StorageArea.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2010-02-04 19:30:57 UTC
  • mfrom: (1.2.8 upstream) (4.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100204193057-d3018lm1fipb0703
* New upstream release
* debian/copyright:
- Updated with changes since 1.1.19.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        virtual unsigned length() const = 0;
51
51
        virtual String key(unsigned index) const = 0;
52
52
        virtual String getItem(const String& key) const = 0;
53
 
        virtual void setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
54
 
        virtual void removeItem(const String& key, Frame* sourceFrame) = 0;
55
 
        virtual void clear(Frame* sourceFrame) = 0;
 
53
        virtual String setItem(const String& key, const String& value, ExceptionCode& ec, Frame* sourceFrame) = 0;
 
54
        virtual String removeItem(const String& key, Frame* sourceFrame) = 0;
 
55
        virtual bool clear(Frame* sourceFrame) = 0;
56
56
        virtual bool contains(const String& key) const = 0;
57
57
    };
58
58