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 {
54 static IDBObjectStore* create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
56 return new IDBObjectStore(metadata, transaction);
58 ~IDBObjectStore() { }
61 // Implement the IDBObjectStore IDL
108 IDBObjectStore(const IDBObjectStoreMetadata&, IDBTransaction*);
IDBObjectStore.cpp 27 #include "modules/indexeddb/IDBObjectStore.h"
58 IDBObjectStore::IDBObjectStore(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
67 void IDBObjectStore::trace(Visitor* visitor)
73 ScriptValue IDBObjectStore::keyPath(ScriptState* scriptState) const
78 PassRefPtrWillBeRawPtr<DOMStringList> IDBObjectStore::indexNames() const
80 IDB_TRACE("IDBObjectStore::indexNames");
88 IDBRequest* IDBObjectStore::get(ScriptState* scriptState, const ScriptValue& key, ExceptionState& exceptionState)
90 IDB_TRACE("IDBObjectStore::get");
120 static void generateIndexKeysForValue(v8::Isolate* isolate, const IDBIndexMetadata& indexMetadata, const ScriptValue& objectValue, IDBObjectStore::IndexKeys* indexKeys
    [all...]

Completed in 39 milliseconds