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(); |
} |