Searched refs:creationCallback (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/Modules/webdatabase/
H A DWorkerGlobalScopeWebDatabase.idl30 [RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
32 [RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
H A DDOMWindowWebDatabase.idl30 [RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
H A DWorkerGlobalScopeWebDatabase.cpp43 PassRefPtr<Database> WorkerGlobalScopeWebDatabase::openDatabase(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
49 database = dbManager.openDatabase(context, name, version, displayName, estimatedSize, creationCallback, error);
58 PassRefPtr<DatabaseSync> WorkerGlobalScopeWebDatabase::openDatabaseSync(WorkerGlobalScope* context, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
64 database = dbManager.openDatabaseSync(context, name, version, displayName, estimatedSize, creationCallback, error);
H A DDOMWindowWebDatabase.cpp43 PassRefPtr<Database> DOMWindowWebDatabase::openDatabase(DOMWindow* window, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
52 database = dbManager.openDatabase(window->document(), name, version, displayName, estimatedSize, creationCallback, error);
H A DWorkerGlobalScopeWebDatabase.h47 static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode&);
48 static PassRefPtr<DatabaseSync> openDatabaseSync(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode&);
H A DDOMWindowWebDatabase.h46 static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode&);
H A DDatabaseManager.cpp293 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback,
299 bool setVersionInNewDatabase = !creationCallback;
312 if (backend->isNew() && creationCallback.get()) {
315 creationCallback->handleEvent(database.get());
325 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, DatabaseError& error)
330 bool setVersionInNewDatabase = !creationCallback;
339 if (backend->isNew() && creationCallback.get()) {
341 creationCallback->handleEvent(database.get());
291 openDatabase(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, DatabaseError& error) argument
323 openDatabaseSync(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, DatabaseError& error) argument

Completed in 76 milliseconds