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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.h 46 class IDBFactory : public ScriptWrappable, public RefCounted<IDBFactory> {
48 static PassRefPtr<IDBFactory> create(IDBFactoryBackendInterface* factory)
50 return adoptRef(new IDBFactory(factory));
52 ~IDBFactory();
63 IDBFactory(IDBFactoryBackendInterface*);
IDBFactory.cpp 30 #include "modules/indexeddb/IDBFactory.h"
56 IDBFactory::IDBFactory(IDBFactoryBackendInterface* factory)
64 IDBFactory::~IDBFactory()
78 PassRefPtr<IDBRequest> IDBFactory::getDatabaseNames(ScriptExecutionContext* context, ExceptionState& es)
80 IDB_TRACE("IDBFactory::getDatabaseNames");
93 PassRefPtr<IDBOpenDBRequest> IDBFactory::open(ScriptExecutionContext* context, const String& name, unsigned long long version, ExceptionState& es)
95 IDB_TRACE("IDBFactory::open");
103 PassRefPtr<IDBOpenDBRequest> IDBFactory::openInternal(ScriptExecutionContext* context, const String& name, int64_t version, ExceptionState (…)
    [all...]

Completed in 704 milliseconds