| Index: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
|
| index 44a6cac6be1feace552f5367ed6997b18d06239a..90500c52352b99e1c8dc58da6f81fbbf247a3ad6 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
|
| @@ -377,7 +377,7 @@ void IDBTransaction::registerRequest(IDBRequest* request) {
|
| void IDBTransaction::unregisterRequest(IDBRequest* request) {
|
| DCHECK(request);
|
| // If we aborted the request, it will already have been removed.
|
| - m_requestList.remove(request);
|
| + m_requestList.erase(request);
|
| }
|
|
|
| void IDBTransaction::onAbort(DOMException* error) {
|
|
|