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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.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/IDBKeyPath.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
index e071880b48cf86c633c6583d4f24c8569c0b73db..d27ea037fb55dcbf75c3dad3883026336003de15 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
@@ -144,7 +144,7 @@ IDBKeyPath::IDBKeyPath(const WebIDBKeyPath& keyPath) {
case WebIDBKeyPathTypeArray:
m_type = ArrayType;
for (size_t i = 0, size = keyPath.array().size(); i < size; ++i)
- m_array.append(keyPath.array()[i]);
+ m_array.push_back(keyPath.array()[i]);
return;
}
ASSERT_NOT_REACHED();
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBKey.h ('k') | third_party/WebKit/Source/modules/indexeddb/IDBKeyPathTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698