Index: Source/modules/indexeddb/IDBTransaction.cpp |
diff --git a/Source/modules/indexeddb/IDBTransaction.cpp b/Source/modules/indexeddb/IDBTransaction.cpp |
index 305cf03bb2a421849c026fb616293406d9616221..2ead4fab0dea9202a24af8a2344a36346a2a8c5a 100644 |
--- a/Source/modules/indexeddb/IDBTransaction.cpp |
+++ b/Source/modules/indexeddb/IDBTransaction.cpp |
@@ -333,7 +333,7 @@ PassRefPtrWillBeRawPtr<DOMStringList> IDBTransaction::objectStoreNames() const |
if (m_mode == WebIDBTransactionModeVersionChange) |
return m_database->objectStoreNames(); |
- RefPtrWillBeRawPtr<DOMStringList> objectStoreNames = DOMStringList::create(); |
+ RefPtrWillBeRawPtr<DOMStringList> objectStoreNames = DOMStringList::create(DOMStringList::IndexedDB); |
for (const String& name : m_objectStoreNames) |
objectStoreNames->append(name); |
objectStoreNames->sort(); |