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

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

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 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/IDBObserver.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp
index fed28f8d42f6484d9681430357ac369efb277fe2..0d026f11f559d4375ca05ea6f0a4f80a93820e3b 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserver.cpp
@@ -89,7 +89,7 @@ void IDBObserver::unobserve(IDBDatabase* database,
Vector<int32_t> observerIdsToRemove;
for (const auto& it : m_observerIds) {
if (it.value == database)
- observerIdsToRemove.append(it.key);
+ observerIdsToRemove.push_back(it.key);
}
m_observerIds.removeAll(observerIdsToRemove);

Powered by Google App Engine
This is Rietveld 408576698