| Index: Source/modules/indexeddb/IDBTransactionTest.cpp
|
| diff --git a/Source/modules/indexeddb/IDBTransactionTest.cpp b/Source/modules/indexeddb/IDBTransactionTest.cpp
|
| index 6252c27749f50a0f635ed8a9a8e6e7d77884008b..345f9b938af352d0a66ba75b2eae546ccbbe3db7 100644
|
| --- a/Source/modules/indexeddb/IDBTransactionTest.cpp
|
| +++ b/Source/modules/indexeddb/IDBTransactionTest.cpp
|
| @@ -100,7 +100,7 @@ TEST_F(IDBTransactionTest, EnsureLifetime)
|
|
|
| const int64_t transactionId = 1234;
|
| const Vector<String> transactionScope;
|
| - Persistent<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBDatabase::TransactionReadOnly, db.get());
|
| + Persistent<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::TransactionReadOnly, db.get());
|
| PersistentHeapHashSet<WeakMember<IDBTransaction> > set;
|
| set.add(transaction);
|
|
|
| @@ -130,7 +130,7 @@ TEST_F(IDBTransactionTest, TransactionFinish)
|
|
|
| const int64_t transactionId = 1234;
|
| const Vector<String> transactionScope;
|
| - Persistent<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::WebIDBDatabase::TransactionReadOnly, db.get());
|
| + Persistent<IDBTransaction> transaction = IDBTransaction::create(executionContext(), transactionId, transactionScope, blink::TransactionReadOnly, db.get());
|
| PersistentHeapHashSet<WeakMember<IDBTransaction> > set;
|
| set.add(transaction);
|
|
|
|
|