Searched defs:creationCallback (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/storage/
H A DDatabaseSync.cpp50 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec)
61 if (!database->performOpenAndVerify(!creationCallback, ec)) {
69 if (database->isNew() && creationCallback.get()) {
72 creationCallback->handleEvent(database.get());
49 openDatabaseSync(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
H A DDatabase.cpp67 static PassOwnPtr<DatabaseCreationCallbackTask> create(PassRefPtr<Database> database, PassRefPtr<DatabaseCallback> creationCallback) argument
69 return adoptPtr(new DatabaseCreationCallbackTask(database, creationCallback));
90 unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback,
100 if (!database->openAndVerifyVersion(!creationCallback, e)) {
116 if (database->isNew() && creationCallback.get()) {
119 database->m_scriptExecutionContext->postTask(DatabaseCreationCallbackTask::create(database, creationCallback));
88 openDatabase(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& e) argument
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.cpp293 PassRefPtr<Database> WorkerContext::openDatabase(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
300 return Database::openDatabase(this, name, version, displayName, estimatedSize, creationCallback, ec);
312 PassRefPtr<DatabaseSync> WorkerContext::openDatabaseSync(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
319 return DatabaseSync::openDatabaseSync(this, name, version, displayName, estimatedSize, creationCallback, ec);
/external/webkit/Source/WebCore/page/
H A DDOMWindow.cpp1360 PassRefPtr<Database> DOMWindow::openDatabase(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
1364 database = Database::openDatabase(m_frame->document(), name, version, displayName, estimatedSize, creationCallback, ec);

Completed in 117 milliseconds