Index: third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp b/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp |
index 5e4e59d747eb997e509b14f7127a7e3deab0ad93..a2937c7eaef0eaba782d276cd3789d55d2792431 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp |
@@ -89,7 +89,7 @@ void WebIDBCallbacksImpl::onSuccess(const WebVector<WebString>& webStringList) { |
Vector<String> stringList; |
for (size_t i = 0; i < webStringList.size(); ++i) |
- stringList.append(webStringList[i]); |
+ stringList.push_back(webStringList[i]); |
InspectorInstrumentation::AsyncTask asyncTask( |
m_request->getExecutionContext(), this); |
m_request->onSuccess(stringList); |