Storage 335 Source/bindings/v8/Dictionary.cpp bool Dictionary::get(const String& key, RefPtrWillBeMember<Storage>& value) const Storage 57 Source/bindings/v8/Dictionary.h class Storage; Storage 86 Source/bindings/v8/Dictionary.h bool get(const String&, RefPtrWillBeMember<Storage>&) const; Storage 732 Source/core/frame/DOMWindow.cpp Storage* DOMWindow::sessionStorage(ExceptionState& exceptionState) const Storage 770 Source/core/frame/DOMWindow.cpp m_sessionStorage = Storage::create(m_frame, storageArea.release()); Storage 774 Source/core/frame/DOMWindow.cpp Storage* DOMWindow::localStorage(ExceptionState& exceptionState) const Storage 813 Source/core/frame/DOMWindow.cpp m_localStorage = Storage::create(m_frame, storageArea.release()); Storage 79 Source/core/frame/DOMWindow.h class Storage; Storage 282 Source/core/frame/DOMWindow.h Storage* sessionStorage(ExceptionState&) const; Storage 283 Source/core/frame/DOMWindow.h Storage* localStorage(ExceptionState&) const; Storage 284 Source/core/frame/DOMWindow.h Storage* optionalSessionStorage() const { return m_sessionStorage.get(); } Storage 285 Source/core/frame/DOMWindow.h Storage* optionalLocalStorage() const { return m_localStorage.get(); } Storage 368 Source/core/frame/DOMWindow.h mutable RefPtrWillBeMember<Storage> m_sessionStorage; Storage 369 Source/core/frame/DOMWindow.h mutable RefPtrWillBeMember<Storage> m_localStorage; Storage 149 Source/core/inspector/ConsoleMessage.cpp case StorageMessageSource: return TypeBuilder::Console::ConsoleMessage::Source::Storage; Storage 50 Source/core/inspector/InjectedScriptHost.h class Storage; Storage 44 Source/core/inspector/InspectorDOMStorageAgent.h class Storage; Storage 36 Source/core/storage/Storage.cpp PassRefPtrWillBeRawPtr<Storage> Storage::create(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea) Storage 38 Source/core/storage/Storage.cpp return adoptRefWillBeNoop(new Storage(frame, storageArea)); Storage 41 Source/core/storage/Storage.cpp Storage::Storage(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea) Storage 50 Source/core/storage/Storage.cpp Storage::~Storage() Storage 54 Source/core/storage/Storage.cpp String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState) Storage 59 Source/core/storage/Storage.cpp String Storage::anonymousNamedGetter(const AtomicString& name, ExceptionState& exceptionState) Storage 70 Source/core/storage/Storage.cpp bool Storage::anonymousNamedSetter(const AtomicString& name, const AtomicString& value, ExceptionState& exceptionState) Storage 76 Source/core/storage/Storage.cpp bool Storage::anonymousIndexedSetter(unsigned index, const AtomicString& value, ExceptionState& exceptionState) Storage 81 Source/core/storage/Storage.cpp DeleteResult Storage::anonymousNamedDeleter(const AtomicString& name, ExceptionState& exceptionState) Storage 94 Source/core/storage/Storage.cpp DeleteResult Storage::anonymousIndexedDeleter(unsigned index, ExceptionState& exceptionState) Storage 100 Source/core/storage/Storage.cpp void Storage::namedPropertyEnumerator(Vector<String>& names, ExceptionState& exceptionState) Storage 118 Source/core/storage/Storage.cpp bool Storage::namedPropertyQuery(const AtomicString& name, ExceptionState& exceptionState) Storage 128 Source/core/storage/Storage.cpp void Storage::trace(Visitor* visitor) Storage 43 Source/core/storage/Storage.h class Storage FINAL : public RefCountedWillBeGarbageCollectedFinalized<Storage>, public ScriptWrappable, public DOMWindowProperty { Storage 45 Source/core/storage/Storage.h static PassRefPtrWillBeRawPtr<Storage> create(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>); Storage 46 Source/core/storage/Storage.h virtual ~Storage(); Storage 70 Source/core/storage/Storage.h Storage(LocalFrame*, PassOwnPtrWillBeRawPtr<StorageArea>); Storage 149 Source/core/storage/StorageArea.cpp Storage* storage = frame->domWindow()->optionalLocalStorage(); Storage 177 Source/core/storage/StorageArea.cpp Storage* storage = frame->domWindow()->optionalSessionStorage(); Storage 184 Source/core/storage/StorageArea.cpp bool StorageArea::isEventSource(Storage* storage, blink::WebStorageArea* sourceAreaInstance) Storage 46 Source/core/storage/StorageArea.h class Storage; Storage 79 Source/core/storage/StorageArea.h static bool isEventSource(Storage*, blink::WebStorageArea* sourceAreaInstance); Storage 51 Source/core/storage/StorageEvent.cpp PassRefPtrWillBeRawPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) Storage 61 Source/core/storage/StorageEvent.cpp StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) Storage 83 Source/core/storage/StorageEvent.cpp void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) Storage 35 Source/core/storage/StorageEvent.h class Storage; Storage 44 Source/core/storage/StorageEvent.h RefPtrWillBeMember<Storage> storageArea; Storage 50 Source/core/storage/StorageEvent.h static PassRefPtrWillBeRawPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); Storage 58 Source/core/storage/StorageEvent.h Storage* storageArea() const { return m_storageArea.get(); } Storage 59 Source/core/storage/StorageEvent.h Storage* storageArea(bool& isNull) const { isNull = !m_storageArea; return m_storageArea.get(); } Storage 61 Source/core/storage/StorageEvent.h void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); Storage 72 Source/core/storage/StorageEvent.h StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea); Storage 79 Source/core/storage/StorageEvent.h RefPtrWillBeMember<Storage> m_storageArea;