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 51 class IDBObjectStore : public ScriptWrappable, public RefCounted<IDBObjectStore> {
53 static PassRefPtr<IDBObjectStore> create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
55 return adoptRef(new IDBObjectStore(metadata, transaction));
57 ~IDBObjectStore() { }
59 // 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 ScriptValue IDBObjectStore::keyPath(ExecutionContext* context) const
69 PassRefPtr<DOMStringList> IDBObjectStore::indexNames() const
71 IDB_TRACE("IDBObjectStore::indexNames");
79 PassRefPtr<IDBRequest> IDBObjectStore::get(ExecutionContext* context, const ScriptValue& key, ExceptionState& exceptionState)
81 IDB_TRACE("IDBObjectStore::get");
107 static void generateIndexKeysForValue(DOMRequestState* requestState, const IDBIndexMetadata& indexMetadata, const ScriptValue& objectValue, IDBObjectStore::IndexKeys* indexKeys)
130 PassRefPtr<IDBRequest> IDBObjectStore::add(ScriptState* state, ScriptValue& value, const ScriptValue& key, ExceptionState& exceptionStat (…)
    [all...]

Completed in 40 milliseconds