OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "core/storage/StorageArea.h" | 32 #include "core/storage/StorageArea.h" |
33 #include "wtf/Forward.h" | 33 #include "wtf/Forward.h" |
34 #include "wtf/RefCounted.h" | 34 #include "wtf/RefCounted.h" |
35 #include "wtf/RefPtr.h" | 35 #include "wtf/RefPtr.h" |
36 | 36 |
37 namespace WebCore { | 37 namespace WebCore { |
38 | 38 |
39 class ExceptionState; | 39 class ExceptionState; |
40 class Frame; | 40 class Frame; |
41 | 41 |
42 class Storage : public ScriptWrappable, public RefCounted<Storage>, public DOMWi
ndowProperty { | 42 class Storage FINAL : public ScriptWrappable, public RefCounted<Storage>, public
DOMWindowProperty { |
43 public: | 43 public: |
44 static PassRefPtr<Storage> create(Frame*, PassOwnPtr<StorageArea>); | 44 static PassRefPtr<Storage> create(Frame*, PassOwnPtr<StorageArea>); |
45 ~Storage(); | 45 virtual ~Storage(); |
46 | 46 |
47 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec,
m_frame); } | 47 unsigned length(ExceptionState& ec) const { return m_storageArea->length(ec,
m_frame); } |
48 String key(unsigned index, ExceptionState& ec) const { return m_storageArea-
>key(index, ec, m_frame); } | 48 String key(unsigned index, ExceptionState& ec) const { return m_storageArea-
>key(index, ec, m_frame); } |
49 String getItem(const String& key, ExceptionState& ec) const { return m_stora
geArea->getItem(key, ec, m_frame); } | 49 String getItem(const String& key, ExceptionState& ec) const { return m_stora
geArea->getItem(key, ec, m_frame); } |
50 void setItem(const String& key, const String& value, ExceptionState& ec) { m
_storageArea->setItem(key, value, ec, m_frame); } | 50 void setItem(const String& key, const String& value, ExceptionState& ec) { m
_storageArea->setItem(key, value, ec, m_frame); } |
51 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->remo
veItem(key, ec, m_frame); } | 51 void removeItem(const String& key, ExceptionState& ec) { m_storageArea->remo
veItem(key, ec, m_frame); } |
52 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); } | 52 void clear(ExceptionState& ec) { m_storageArea->clear(ec, m_frame); } |
53 bool contains(const String& key, ExceptionState& ec) const { return m_storag
eArea->contains(key, ec, m_frame); } | 53 bool contains(const String& key, ExceptionState& ec) const { return m_storag
eArea->contains(key, ec, m_frame); } |
54 | 54 |
55 StorageArea* area() const { return m_storageArea.get(); } | 55 StorageArea* area() const { return m_storageArea.get(); } |
56 | 56 |
57 String anonymousIndexedGetter(unsigned, ExceptionState&); | 57 String anonymousIndexedGetter(unsigned, ExceptionState&); |
58 String anonymousNamedGetter(const AtomicString&, ExceptionState&); | 58 String anonymousNamedGetter(const AtomicString&, ExceptionState&); |
59 bool anonymousNamedSetter(const AtomicString& name, const AtomicString& valu
e, ExceptionState&); | 59 bool anonymousNamedSetter(const AtomicString& name, const AtomicString& valu
e, ExceptionState&); |
60 bool anonymousIndexedSetter(unsigned, const AtomicString&, ExceptionState&); | 60 bool anonymousIndexedSetter(unsigned, const AtomicString&, ExceptionState&); |
61 DeleteResult anonymousNamedDeleter(const AtomicString&, ExceptionState&); | 61 DeleteResult anonymousNamedDeleter(const AtomicString&, ExceptionState&); |
62 DeleteResult anonymousIndexedDeleter(unsigned, ExceptionState&); | 62 DeleteResult anonymousIndexedDeleter(unsigned, ExceptionState&); |
63 void namedPropertyEnumerator(Vector<String>&, ExceptionState&); | 63 void namedPropertyEnumerator(Vector<String>&, ExceptionState&); |
64 bool namedPropertyQuery(const AtomicString&, ExceptionState&); | 64 bool namedPropertyQuery(const AtomicString&, ExceptionState&); |
65 | 65 |
66 private: | 66 private: |
67 Storage(Frame*, PassOwnPtr<StorageArea>); | 67 Storage(Frame*, PassOwnPtr<StorageArea>); |
68 | 68 |
69 OwnPtr<StorageArea> m_storageArea; | 69 OwnPtr<StorageArea> m_storageArea; |
70 }; | 70 }; |
71 | 71 |
72 } // namespace WebCore | 72 } // namespace WebCore |
73 | 73 |
74 #endif // Storage_h | 74 #endif // Storage_h |
OLD | NEW |