| Index: content/browser/indexed_db/indexed_db_database_unittest.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_database_unittest.cc b/content/browser/indexed_db/indexed_db_database_unittest.cc
|
| index 307cf5144444160be7458114faa91d1d4598713f..ec27c5993d680adce278448dab423f45e27d78d1 100644
|
| --- a/content/browser/indexed_db/indexed_db_database_unittest.cc
|
| +++ b/content/browser/indexed_db/indexed_db_database_unittest.cc
|
| @@ -139,10 +139,8 @@ TEST(IndexedDBDatabaseTest, ForcedClose) {
|
|
|
| const int64 transaction_id = 123;
|
| const std::vector<int64> scope;
|
| - database->CreateTransaction(transaction_id,
|
| - request->connection(),
|
| - scope,
|
| - indexed_db::TRANSACTION_READ_ONLY);
|
| + database->CreateTransaction(
|
| + transaction_id, request->connection(), scope, blink::TransactionReadOnly);
|
|
|
| request->connection()->ForceClose();
|
|
|
| @@ -250,7 +248,7 @@ class IndexedDBDatabaseOperationTest : public testing::Test {
|
| transaction_id,
|
| callbacks_,
|
| std::set<int64>() /*scope*/,
|
| - indexed_db::TRANSACTION_VERSION_CHANGE,
|
| + blink::TransactionVersionChange,
|
| db_,
|
| new IndexedDBFakeBackingStore::FakeTransaction(commit_success_));
|
| db_->TransactionCreated(transaction_);
|
|
|