| Index: content/browser/indexed_db/indexed_db_browsertest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_browsertest.cc b/content/browser/indexed_db/indexed_db_browsertest.cc
|
| index 9ad5b4dad2af2bed36f863a435a8ad6ef282f61e..21f6ad671169d1a724f4d752361451104f6c2528 100644
|
| --- a/content/browser/indexed_db/indexed_db_browsertest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_browsertest.cc
|
| @@ -492,14 +492,22 @@
|
| // => IndexedDBBackingStore::SetUpMetadata
|
| // #2: IndexedDBBackingStore::OpenBackingStore
|
| // => IndexedDBBackingStore::CleanUpBlobJournal (no-op)
|
| - // * The test calls open(), to create a new database:
|
| - // #3: IndexedDBFactoryImpl::Open
|
| + // * Then deletes the database:
|
| + // #3: IndexedDBFactoryImpl::DeleteDatabase
|
| // => IndexedDBDatabase::Create
|
| // => IndexedDBBackingStore::CreateIDBDatabaseMetaData
|
| - // #4: IndexedDBTransaction::Commit - initial "versionchange" transaction
|
| + // #4: IndexedDBFactoryImpl::DeleteDatabase
|
| + // => IndexedDBDatabase::DeleteDatabase
|
| + // => IndexedDBBackingStore::DeleteDatabase
|
| + // => IndexedDBBackingStore::CleanUpBlobJournal (no-op)
|
| + // * The test calls open(), to create a new database:
|
| + // #5: IndexedDBFactoryImpl::Open
|
| + // => IndexedDBDatabase::Create
|
| + // => IndexedDBBackingStore::CreateIDBDatabaseMetaData
|
| + // #6: IndexedDBTransaction::Commit - initial "versionchange" transaction
|
| // * Once the connection is opened, the test runs:
|
| - // #5: IndexedDBTransaction::Commit - the test's "readwrite" transaction)
|
| - const int instance_num = 5;
|
| + // #7: IndexedDBTransaction::Commit - the test's "readwrite" transaction)
|
| + const int instance_num = 7;
|
| const int call_num = 1;
|
| FailOperation(FAIL_CLASS_LEVELDB_TRANSACTION, FAIL_METHOD_COMMIT_DISK_FULL,
|
| instance_num, call_num);
|
|
|