Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Side by Side Diff: Source/core/storage/Storage.h

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/speech/SpeechInputEvent.h ('k') | Source/core/storage/StorageEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/speech/SpeechInputEvent.h ('k') | Source/core/storage/StorageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698