| Index: Source/modules/indexeddb/IDBTransactionTest.cpp
|
| diff --git a/Source/modules/indexeddb/IDBTransactionTest.cpp b/Source/modules/indexeddb/IDBTransactionTest.cpp
|
| index 6038c923405301681c92cd01508747b24c86b0df..2998908eed3259b716c690c88053ecfcfc65d441 100644
|
| --- a/Source/modules/indexeddb/IDBTransactionTest.cpp
|
| +++ b/Source/modules/indexeddb/IDBTransactionTest.cpp
|
| @@ -107,7 +107,7 @@ TEST_F(IDBTransactionTest, EnsureLifetime)
|
| const int64_t transactionId = 1234;
|
| const Vector<String> transactionScope;
|
| Persistent<IDBTransaction> transaction = IDBTransaction::create(scriptState(), transactionId, transactionScope, WebIDBTransactionModeReadOnly, db.get());
|
| - PersistentHeapHashSet<WeakMember<IDBTransaction> > set;
|
| + PersistentHeapHashSet<WeakMember<IDBTransaction>> set;
|
| set.add(transaction);
|
|
|
| Heap::collectAllGarbage();
|
| @@ -137,7 +137,7 @@ TEST_F(IDBTransactionTest, TransactionFinish)
|
| const int64_t transactionId = 1234;
|
| const Vector<String> transactionScope;
|
| Persistent<IDBTransaction> transaction = IDBTransaction::create(scriptState(), transactionId, transactionScope, WebIDBTransactionModeReadOnly, db.get());
|
| - PersistentHeapHashSet<WeakMember<IDBTransaction> > set;
|
| + PersistentHeapHashSet<WeakMember<IDBTransaction>> set;
|
| set.add(transaction);
|
|
|
| Heap::collectAllGarbage();
|
|
|