storageArea       764 Source/core/frame/DOMWindow.cpp     OwnPtrWillBeRawPtr<StorageArea> storageArea = page->sessionStorage()->storageArea(document->securityOrigin());
storageArea       765 Source/core/frame/DOMWindow.cpp     if (!storageArea->canAccessStorage(m_frame)) {
storageArea       770 Source/core/frame/DOMWindow.cpp     m_sessionStorage = Storage::create(m_frame, storageArea.release());
storageArea       807 Source/core/frame/DOMWindow.cpp     OwnPtrWillBeRawPtr<StorageArea> storageArea = StorageNamespace::localStorageArea(document->securityOrigin());
storageArea       808 Source/core/frame/DOMWindow.cpp     if (!storageArea->canAccessStorage(m_frame)) {
storageArea       813 Source/core/frame/DOMWindow.cpp     m_localStorage = Storage::create(m_frame, storageArea.release());
storageArea       112 Source/core/inspector/InspectorDOMStorageAgent.cpp     OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
storageArea       113 Source/core/inspector/InspectorDOMStorageAgent.cpp     if (!storageArea)
storageArea       119 Source/core/inspector/InspectorDOMStorageAgent.cpp     for (unsigned i = 0; i < storageArea->length(exceptionState, frame); ++i) {
storageArea       120 Source/core/inspector/InspectorDOMStorageAgent.cpp         String name(storageArea->key(i, exceptionState, frame));
storageArea       123 Source/core/inspector/InspectorDOMStorageAgent.cpp         String value(storageArea->getItem(name, exceptionState, frame));
storageArea       144 Source/core/inspector/InspectorDOMStorageAgent.cpp     OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(0, storageId, frame);
storageArea       145 Source/core/inspector/InspectorDOMStorageAgent.cpp     if (!storageArea) {
storageArea       151 Source/core/inspector/InspectorDOMStorageAgent.cpp     storageArea->setItem(key, value, exceptionState, frame);
storageArea       158 Source/core/inspector/InspectorDOMStorageAgent.cpp     OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(0, storageId, frame);
storageArea       159 Source/core/inspector/InspectorDOMStorageAgent.cpp     if (!storageArea) {
storageArea       165 Source/core/inspector/InspectorDOMStorageAgent.cpp     storageArea->removeItem(key, exceptionState, frame);
storageArea       216 Source/core/inspector/InspectorDOMStorageAgent.cpp     return m_pageAgent->page()->sessionStorage()->storageArea(frame->document()->securityOrigin());
storageArea        36 Source/core/storage/Storage.cpp PassRefPtrWillBeRawPtr<Storage> Storage::create(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea)
storageArea        38 Source/core/storage/Storage.cpp     return adoptRefWillBeNoop(new Storage(frame, storageArea));
storageArea        41 Source/core/storage/Storage.cpp Storage::Storage(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea)
storageArea        43 Source/core/storage/Storage.cpp     , m_storageArea(storageArea)
storageArea        48 Source/core/storage/StorageArea.cpp StorageArea::StorageArea(PassOwnPtr<blink::WebStorageArea> storageArea, StorageType storageType)
storageArea        49 Source/core/storage/StorageArea.cpp     : m_storageArea(storageArea)
storageArea        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)
storageArea        53 Source/core/storage/StorageEvent.cpp     return adoptRefWillBeNoop(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
storageArea        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)
storageArea        67 Source/core/storage/StorageEvent.cpp     , m_storageArea(storageArea)
storageArea        78 Source/core/storage/StorageEvent.cpp     , m_storageArea(initializer.storageArea)
storageArea        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)
storageArea        94 Source/core/storage/StorageEvent.cpp     m_storageArea = storageArea;
storageArea        44 Source/core/storage/StorageEvent.h     RefPtrWillBeMember<Storage> storageArea;
storageArea        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);
storageArea        58 Source/core/storage/StorageEvent.h     Storage* storageArea() const { return m_storageArea.get(); }
storageArea        59 Source/core/storage/StorageEvent.h     Storage* storageArea(bool& isNull) const { isNull = !m_storageArea; return m_storageArea.get(); }
storageArea        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);
storageArea        72 Source/core/storage/StorageEvent.h     StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
storageArea        50 Source/core/storage/StorageNamespace.h     PassOwnPtrWillBeRawPtr<StorageArea> storageArea(SecurityOrigin*);