| Index: Source/modules/indexeddb/IDBObjectStore.cpp
|
| diff --git a/Source/modules/indexeddb/IDBObjectStore.cpp b/Source/modules/indexeddb/IDBObjectStore.cpp
|
| index 63dfbc2cb79e55718513b600044d2d3887838669..f9e5b740b5af2b838bc640c3048c5793adc94ee8 100644
|
| --- a/Source/modules/indexeddb/IDBObjectStore.cpp
|
| +++ b/Source/modules/indexeddb/IDBObjectStore.cpp
|
| @@ -78,10 +78,10 @@ ScriptValue IDBObjectStore::keyPath(ScriptState* scriptState) const
|
| return idbAnyToScriptValue(scriptState, IDBAny::create(m_metadata.keyPath));
|
| }
|
|
|
| -PassRefPtr<DOMStringList> IDBObjectStore::indexNames() const
|
| +PassRefPtrWillBeRawPtr<DOMStringList> IDBObjectStore::indexNames() const
|
| {
|
| IDB_TRACE("IDBObjectStore::indexNames");
|
| - RefPtr<DOMStringList> indexNames = DOMStringList::create();
|
| + RefPtrWillBeRawPtr<DOMStringList> indexNames = DOMStringList::create();
|
| for (IDBObjectStoreMetadata::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it)
|
| indexNames->append(it->value.name);
|
| indexNames->sort();
|
|
|