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

Unified Diff: third_party/WebKit/Source/modules/cachestorage/CacheStorage.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/cachestorage/CacheStorage.cpp
diff --git a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp
index 58675ea98125f9c4d575c1db1c3306185245b795..e8a09ae1d4b5590613fbdd54d2531342547bca95 100644
--- a/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp
+++ b/third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp
@@ -206,7 +206,7 @@ class CacheStorage::KeysCallbacks final
return;
Vector<String> wtfKeys;
for (size_t i = 0; i < keys.size(); ++i)
- wtfKeys.append(keys[i]);
+ wtfKeys.push_back(keys[i]);
m_resolver->resolve(wtfKeys);
m_resolver.clear();
}

Powered by Google App Engine
This is Rietveld 408576698