| Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| index 0b840c26e1bd06136255ac778b97fa61fc8d2ea9..b07af8249d59922b79952f614851c45174976470 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp
|
| @@ -144,7 +144,7 @@ void IDBDatabase::setDatabaseMetadata(const IDBDatabaseMetadata& metadata) {
|
| void IDBDatabase::transactionCreated(IDBTransaction* transaction) {
|
| DCHECK(transaction);
|
| DCHECK(!m_transactions.contains(transaction->id()));
|
| - m_transactions.add(transaction->id(), transaction);
|
| + m_transactions.insert(transaction->id(), transaction);
|
|
|
| if (transaction->isVersionChange()) {
|
| DCHECK(!m_versionChangeTransaction);
|
|
|