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

  /external/webkit/Source/WebCore/storage/
StorageEvent.h 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
48 Storage* storageArea() const { return m_storageArea.get(); }
50 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
59 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
StorageNamespaceImpl.cpp 109 PassRefPtr<StorageArea> StorageNamespaceImpl::storageArea(PassRefPtr<SecurityOrigin> prpOrigin)
115 RefPtr<StorageAreaImpl> storageArea;
116 if ((storageArea = m_storageAreaMap.get(origin)))
117 return storageArea.release();
119 storageArea = StorageAreaImpl::create(m_storageType, origin, m_syncManager, m_quota);
120 m_storageAreaMap.set(origin.release(), storageArea);
121 return storageArea.release();
175 RefPtr<StorageAreaImpl> storageArea = m_storageAreaMap.get(origin);
176 if (storageArea)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
StorageNamespaceProxy.cpp 79 PassRefPtr<StorageArea> StorageNamespaceProxy::storageArea(PassRefPtr<SecurityOrigin> origin)

Completed in 557 milliseconds