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

  /external/webkit/Source/WebCore/storage/
IDBObjectStore.h 49 class IDBObjectStore : public RefCounted<IDBObjectStore> {
51 static PassRefPtr<IDBObjectStore> create(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore, IDBTransaction* transaction)
53 return adoptRef(new IDBObjectStore(idbObjectStore, transaction));
55 ~IDBObjectStore() { }
81 IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface>, IDBTransaction*);
IDBObjectStore.cpp 27 #include "IDBObjectStore.h"
45 IDBObjectStore::IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore, IDBTransaction* transaction)
46 : m_objectStore(idbObjectStore)
55 String IDBObjectStore::name() const
60 String IDBObjectStore::keyPath() const
65 PassRefPtr<DOMStringList> IDBObjectStore::indexNames() const
70 PassRefPtr<IDBRequest> IDBObjectStore::get(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec)
81 PassRefPtr<IDBRequest> IDBObjectStore::add(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBKey> (…)
    [all...]

Completed in 180 milliseconds