Home
last modified time | relevance | path

Searched refs:storageArea (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMStorageAgent.cpp113 OwnPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame); in getDOMStorageItems() local
114 if (!storageArea) in getDOMStorageItems()
120 for (unsigned i = 0; i < storageArea->length(exceptionState, frame); ++i) { in getDOMStorageItems()
121 String name(storageArea->key(i, exceptionState, frame)); in getDOMStorageItems()
124 String value(storageArea->getItem(name, exceptionState, frame)); in getDOMStorageItems()
145 OwnPtr<StorageArea> storageArea = findStorageArea(0, storageId, frame); in setDOMStorageItem() local
146 if (!storageArea) { in setDOMStorageItem()
152 storageArea->setItem(key, value, exceptionState, frame); in setDOMStorageItem()
159 OwnPtr<StorageArea> storageArea = findStorageArea(0, storageId, frame); in removeDOMStorageItem() local
160 if (!storageArea) { in removeDOMStorageItem()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/storage/
DStorageEvent.cpp52 …ring& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) in create() argument
54 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea)); in create()
62 …ring& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) in StorageEvent() argument
68 , m_storageArea(storageArea) in StorageEvent()
79 , m_storageArea(initializer.storageArea) in StorageEvent()
84 …ring& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea) in initStorageEvent() argument
95 m_storageArea = storageArea; in initStorageEvent()
DStorageEvent.h43 RefPtr<Storage> storageArea; member
49 …ing& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
57 Storage* storageArea() const { return m_storageArea.get(); } in storageArea() function
58 … Storage* storageArea(bool& isNull) const { isNull = !m_storageArea; return m_storageArea.get(); } in storageArea() function
60 …ing& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
69 …ing& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
DStorage.cpp36 PassRefPtr<Storage> Storage::create(Frame* frame, PassOwnPtr<StorageArea> storageArea) in create() argument
38 return adoptRef(new Storage(frame, storageArea)); in create()
41 Storage::Storage(Frame* frame, PassOwnPtr<StorageArea> storageArea) in Storage() argument
43 , m_storageArea(storageArea) in Storage()
DStorageNamespace.h43 virtual PassOwnPtr<StorageArea> storageArea(SecurityOrigin*) = 0;
DStorageEvent.idl33 [InitializedByEventConstructor] readonly attribute Storage? storageArea;
/external/chromium_org/third_party/WebKit/Source/web/
DStorageNamespaceProxy.h42 virtual PassOwnPtr<StorageArea> storageArea(SecurityOrigin*);
DStorageNamespaceProxy.cpp69 PassOwnPtr<StorageArea> StorageNamespaceProxy::storageArea(SecurityOrigin* origin) in storageArea() function in WebCore::StorageNamespaceProxy
DStorageAreaProxy.cpp53 StorageAreaProxy::StorageAreaProxy(PassOwnPtr<blink::WebStorageArea> storageArea, StorageType stora… in StorageAreaProxy() argument
54 : m_storageArea(storageArea) in StorageAreaProxy()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DDOMWindow.cpp784 … OwnPtr<StorageArea> storageArea = page->sessionStorage()->storageArea(document->securityOrigin()); in sessionStorage() local
785 if (!storageArea->canAccessStorage(m_frame)) { in sessionStorage()
790 m_sessionStorage = Storage::create(m_frame, storageArea.release()); in sessionStorage()
829 … OwnPtr<StorageArea> storageArea = StorageNamespace::localStorageArea(document->securityOrigin()); in localStorage() local
830 if (!storageArea->canAccessStorage(m_frame)) { in localStorage()
835 m_localStorage = Storage::create(m_frame, storageArea.release()); in localStorage()