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 52 class IDBObjectStore : public GarbageCollectedFinalized<IDBObjectStore>, public ScriptWrappable {
55 static IDBObjectStore* create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
57 return new IDBObjectStore(metadata, transaction);
59 ~IDBObjectStore() { }
62 // Implement the IDBObjectStore IDL
109 IDBObjectStore(const IDBObjectStoreMetadata&, IDBTransaction*);
IDBObjectStore.cpp 27 #include "modules/indexeddb/IDBObjectStore.h"
58 IDBObjectStore::IDBObjectStore(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
66 void IDBObjectStore::trace(Visitor* visitor)
72 ScriptValue IDBObjectStore::keyPath(ScriptState* scriptState) const
77 PassRefPtrWillBeRawPtr<DOMStringList> IDBObjectStore::indexNames() const
79 IDB_TRACE("IDBObjectStore::indexNames");
87 IDBRequest* IDBObjectStore::get(ScriptState* scriptState, const ScriptValue& key, ExceptionState& exceptionState)
89 IDB_TRACE("IDBObjectStore::get");
119 static void generateIndexKeysForValue(v8::Isolate* isolate, const IDBIndexMetadata& indexMetadata, const ScriptValue& objectValue, IDBObjectStore::IndexKeys* indexKeys
    [all...]

Completed in 162 milliseconds