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

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

Issue 2724363002: Migrate WTF::LinkedHashSet/ListHashSet::add() to ::insert() (Closed)
Patch Set: Created 3 years, 10 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 f9ce3ff1e17d25ebedafdbfd8509acb88fad5db4..44a6cac6be1feace552f5367ed6997b18d06239a 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransaction.cpp
@@ -371,7 +371,7 @@ void IDBTransaction::abort(ExceptionState& exceptionState) {
void IDBTransaction::registerRequest(IDBRequest* request) {
DCHECK(request);
DCHECK_EQ(m_state, Active);
- m_requestList.add(request);
+ m_requestList.insert(request);
}
void IDBTransaction::unregisterRequest(IDBRequest* request) {
« 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