| Index: Source/modules/indexeddb/IDBRequest.cpp
|
| diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp
|
| index e2da60b763f6e03537ba2f45f19e226c154aea03..36858b95f35a1803c21e2fe4344cbc5815dfc3e9 100644
|
| --- a/Source/modules/indexeddb/IDBRequest.cpp
|
| +++ b/Source/modules/indexeddb/IDBRequest.cpp
|
| @@ -260,7 +260,7 @@ void IDBRequest::onSuccess(const Vector<String>& stringList)
|
| if (!shouldEnqueueEvent())
|
| return;
|
|
|
| - RefPtr<DOMStringList> domStringList = DOMStringList::create();
|
| + RefPtrWillBeRawPtr<DOMStringList> domStringList = DOMStringList::create();
|
| for (size_t i = 0; i < stringList.size(); ++i)
|
| domStringList->append(stringList[i]);
|
| onSuccessInternal(IDBAny::create(domStringList.release()));
|
|
|