Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp

Issue 2725063003: Migrate WTF::LinkedHashSet/ListHashSet/HashTable::remove() to ::erase() (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « third_party/WebKit/Source/modules/canvas2d/HitRegion.cpp ('k') | third_party/WebKit/Source/platform/fonts/FontDataCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698