Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
index da44d0a7d36c95f841dbe5eb658caf3c8f34d096..39af221f48bb2dbf0ee6d95e77d95d65ba04b5e6 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
@@ -387,7 +387,7 @@ IDBTransaction* IDBDatabase::transaction( |
NotFoundError, "One of the specified object stores was not found."); |
return nullptr; |
} |
- objectStoreIds.append(objectStoreId); |
+ objectStoreIds.push_back(objectStoreId); |
} |
WebIDBTransactionMode mode = IDBTransaction::stringToMode(modeString); |
@@ -476,7 +476,7 @@ void IDBDatabase::enqueueEvent(Event* event) { |
EventQueue* eventQueue = getExecutionContext()->getEventQueue(); |
event->setTarget(this); |
eventQueue->enqueueEvent(event); |
- m_enqueuedEvents.append(event); |
+ m_enqueuedEvents.push_back(event); |
} |
DispatchEventResult IDBDatabase::dispatchEventInternal(Event* event) { |