Home | History | Annotate | Download | only in dom

Lines Matching refs:Database

31 #include "Database.h"
61 #if ENABLE(DATABASE)
80 #if ENABLE(DATABASE)
88 #if ENABLE(DATABASE)
93 // Create the database thread on first request - but not if at least one database was already opened,
94 // because in that case we already had a database thread and terminated it and should not create another.
103 void ScriptExecutionContext::addOpenDatabase(Database* database)
109 ASSERT(!m_openDatabaseSet->contains(database));
110 m_openDatabaseSet->add(database);
113 void ScriptExecutionContext::removeOpenDatabase(Database* database)
116 ASSERT(m_openDatabaseSet && m_openDatabaseSet->contains(database));
119 m_openDatabaseSet->remove(database);