Index: Source/modules/indexeddb/IDBRequest.cpp |
diff --git a/Source/modules/indexeddb/IDBRequest.cpp b/Source/modules/indexeddb/IDBRequest.cpp |
index 1d2da9fe9c14be7761643f22ea42ffaf9ec1917c..3dd165775bcce77136d4ad2a33081f8c4a8c282a 100644 |
--- a/Source/modules/indexeddb/IDBRequest.cpp |
+++ b/Source/modules/indexeddb/IDBRequest.cpp |
@@ -257,7 +257,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())); |