HomeSort by relevance Sort by last modified time
    Searched refs:storageArea (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/storage/
StorageNamespace.h 35 class StorageArea;
39 static PassOwnPtr<StorageArea> localStorageArea(SecurityOrigin*);
43 virtual PassOwnPtr<StorageArea> storageArea(SecurityOrigin*) = 0;
StorageEvent.h 43 RefPtr<Storage> storageArea;
49 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
57 Storage* storageArea() const { return m_storageArea.get(); }
58 Storage* storageArea(bool& isNull) const { isNull = !m_storageArea; return m_storageArea.get(); }
60 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
69 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
StorageEvent.cpp 52 PassRefPtr<StorageEvent> StorageEvent::create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
54 return adoptRef(new StorageEvent(type, key, oldValue, newValue, url, storageArea));
62 StorageEvent::StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
68 , m_storageArea(storageArea)
79 , m_storageArea(initializer.storageArea)
84 void StorageEvent::initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea)
95 m_storageArea = storageArea;
Storage.cpp 36 PassRefPtr<Storage> Storage::create(Frame* frame, PassOwnPtr<StorageArea> storageArea)
38 return adoptRef(new Storage(frame, storageArea));
41 Storage::Storage(Frame* frame, PassOwnPtr<StorageArea> storageArea)
43 , m_storageArea(storageArea)
StorageEvent.idl 33 [InitializedByEventConstructor] readonly attribute Storage? storageArea;
  /external/chromium_org/third_party/WebKit/Source/web/
StorageNamespaceProxy.h 29 #include "core/storage/StorageArea.h"
42 virtual PassOwnPtr<StorageArea> storageArea(SecurityOrigin*);
StorageNamespaceProxy.cpp 45 PassOwnPtr<StorageArea> StorageNamespace::localStorageArea(SecurityOrigin* origin)
69 PassOwnPtr<StorageArea> StorageNamespaceProxy::storageArea(SecurityOrigin* origin)
StorageAreaProxy.cpp 53 StorageAreaProxy::StorageAreaProxy(PassOwnPtr<blink::WebStorageArea> storageArea, StorageType storageType)
54 : m_storageArea(storageArea)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMStorageAgent.cpp 113 OwnPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
114 if (!storageArea)
120 for (unsigned i = 0; i < storageArea->length(exceptionState, frame); ++i) {
121 String name(storageArea->key(i, exceptionState, frame));
124 String value(storageArea->getItem(name, exceptionState, frame));
145 OwnPtr<StorageArea> storageArea = findStorageArea(0, storageId, frame);
146 if (!storageArea) {
152 storageArea->setItem(key, value, exceptionState, frame)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindow.cpp 93 #include "core/storage/StorageArea.h"
784 OwnPtr<StorageArea> storageArea = page->sessionStorage()->storageArea(document->securityOrigin());
785 if (!storageArea->canAccessStorage(m_frame)) {
790 m_sessionStorage = Storage::create(m_frame, storageArea.release());
829 OwnPtr<StorageArea> storageArea = StorageNamespace::localStorageArea(document->securityOrigin());
830 if (!storageArea->canAccessStorage(m_frame)) {
835 m_localStorage = Storage::create(m_frame, storageArea.release())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar 

Completed in 474 milliseconds