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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.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/IDBObserverChanges.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
index f3bde6ff7b7cb42783f236a299d0c5c2f8097dcd..5e80fe6adf743e87614bc8e0cd5ceeacfb82033a 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
@@ -51,7 +51,8 @@ void IDBObserverChanges::extractChanges(
m_records
.add(observations[idx].objectStoreId,
HeapVector<Member<IDBObservation>>())
- .storedValue->value.append(IDBObservation::create(observations[idx]));
+ .storedValue->value.push_back(
+ IDBObservation::create(observations[idx]));
}
DEFINE_TRACE(IDBObserverChanges) {

Powered by Google App Engine
This is Rietveld 408576698