Home | History | Annotate | Download | only in storage

Lines Matching refs:backingStore

170     RefPtr<IDBSQLiteBackingStore> backingStore(adoptRef(new IDBSQLiteBackingStore(fileIdentifier, factory)));
182 if (!backingStore->m_db.open(path)) {
189 backingStore->m_db.setMaximumSize(maximumSize);
190 backingStore->m_db.turnOnIncrementalAutoVacuum();
192 if (!createTables(backingStore->m_db))
194 if (!migrateDatabase(backingStore->m_db))
197 return backingStore.release();