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 44 class IDBFactory : public GarbageCollectedFinalized<IDBFactory>, public ScriptWrappable {
46 static IDBFactory* create(IndexedDBClient* client)
48 return new IDBFactory(client);
50 ~IDBFactory();
62 explicit IDBFactory(IndexedDBClient*);
IDBFactory.cpp 30 #include "modules/indexeddb/IDBFactory.h"
53 IDBFactory::IDBFactory(IndexedDBClient* permissionClient)
59 IDBFactory::~IDBFactory()
63 void IDBFactory::trace(Visitor* visitor)
78 IDBRequest* IDBFactory::getDatabaseNames(ScriptState* scriptState, ExceptionState& exceptionState)
80 IDB_TRACE("IDBFactory::getDatabaseNames");
95 blink::Platform::current()->idbFactory()->getDatabaseNames(WebIDBCallbacksImpl::create(request).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(scriptState->executionContext()->securityOrigin()));
99 IDBOpenDBRequest* IDBFactory::open(ScriptState* scriptState, const String& name, unsigned long long version, ExceptionState& ex (…)
    [all...]

Completed in 413 milliseconds