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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBObjectStore.h 50 class IDBObjectStore : public ScriptWrappable, public RefCounted<IDBObjectStore> {
52 static PassRefPtr<IDBObjectStore> create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
54 return adoptRef(new IDBObjectStore(metadata, transaction));
56 ~IDBObjectStore() { }
58 // Implement the IDBObjectStore IDL
101 IDBObjectStore(const IDBObjectStoreMetadata&, IDBTransaction*);
IDBObjectStore.cpp 27 #include "modules/indexeddb/IDBObjectStore.h"
52 IDBObjectStore::IDBObjectStore(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
63 PassRefPtr<DOMStringList> IDBObjectStore::indexNames() const
65 IDB_TRACE("IDBObjectStore::indexNames");
73 PassRefPtr<IDBRequest> IDBObjectStore::get(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, ExceptionState& es)
75 IDB_TRACE("IDBObjectStore::get");
97 PassRefPtr<IDBRequest> IDBObjectStore::get(ScriptExecutionContext* context, const ScriptValue& key, ExceptionState& es)
105 static void generateIndexKeysForValue(DOMRequestState* requestState, const IDBIndexMetadata& indexMetadata, const ScriptValue& objectValue, IDBObjectStore::IndexKeys* indexKeys)
128 PassRefPtr<IDBRequest> IDBObjectStore::add(ScriptState* state, ScriptValue& value, const ScriptValue& key, ExceptionState& es
    [all...]

Completed in 2834 milliseconds