Index: Source/modules/indexeddb/IDBObjectStore.cpp |
diff --git a/Source/modules/indexeddb/IDBObjectStore.cpp b/Source/modules/indexeddb/IDBObjectStore.cpp |
index ca688f33447fe59aa454efe02ece5cc743da9520..1cc956766971cbc8a30b29f6be441ce048b923a6 100644 |
--- a/Source/modules/indexeddb/IDBObjectStore.cpp |
+++ b/Source/modules/indexeddb/IDBObjectStore.cpp |
@@ -79,7 +79,7 @@ ScriptValue IDBObjectStore::keyPath(ScriptState* scriptState) const |
PassRefPtrWillBeRawPtr<DOMStringList> IDBObjectStore::indexNames() const |
{ |
IDB_TRACE("IDBObjectStore::indexNames"); |
- RefPtrWillBeRawPtr<DOMStringList> indexNames = DOMStringList::create(); |
+ RefPtrWillBeRawPtr<DOMStringList> indexNames = DOMStringList::create(DOMStringList::IndexedDB); |
for (IDBObjectStoreMetadata::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) |
indexNames->append(it->value.name); |
indexNames->sort(); |