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

  /external/webkit/WebCore/storage/
StorageEvent.h 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
47 Storage* storageArea() const { return m_storageArea.get(); }
49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
58 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
StorageNamespaceImpl.cpp 108 PassRefPtr<StorageArea> StorageNamespaceImpl::storageArea(PassRefPtr<SecurityOrigin> prpOrigin)
114 RefPtr<StorageAreaImpl> storageArea;
115 if (storageArea = m_storageAreaMap.get(origin))
116 return storageArea.release();
118 storageArea = StorageAreaImpl::create(m_storageType, origin, m_syncManager, m_quota);
119 m_storageAreaMap.set(origin.release(), storageArea);
120 return storageArea.release();
  /external/webkit/WebKit/chromium/src/
StorageNamespaceProxy.cpp 79 PassRefPtr<StorageArea> StorageNamespaceProxy::storageArea(PassRefPtr<SecurityOrigin> origin)

Completed in 800 milliseconds