Index: Source/modules/indexeddb/IDBAny.h |
diff --git a/Source/modules/indexeddb/IDBAny.h b/Source/modules/indexeddb/IDBAny.h |
index b0cc7dc51101aa021783bf3d0b55503615e8373e..0812d2af9312398c3117f25adff7581b57243eae 100644 |
--- a/Source/modules/indexeddb/IDBAny.h |
+++ b/Source/modules/indexeddb/IDBAny.h |
@@ -124,7 +124,7 @@ public: |
private: |
explicit IDBAny(Type); |
- explicit IDBAny(PassRefPtr<DOMStringList>); |
+ explicit IDBAny(PassRefPtrWillBeRawPtr<DOMStringList>); |
explicit IDBAny(PassRefPtrWillBeRawPtr<IDBCursor>); |
explicit IDBAny(PassRefPtrWillBeRawPtr<IDBDatabase>); |
explicit IDBAny(PassRefPtrWillBeRawPtr<IDBIndex>); |
@@ -140,7 +140,7 @@ private: |
const Type m_type; |
// Only one of the following should ever be in use at any given time, except that BufferType uses two and BufferKeyAndKeyPathType uses four. |
- const RefPtr<DOMStringList> m_domStringList; |
+ const RefPtrWillBeMember<DOMStringList> m_domStringList; |
const RefPtrWillBeMember<IDBCursor> m_idbCursor; |
const RefPtrWillBeMember<IDBDatabase> m_idbDatabase; |
const RefPtrWillBeMember<IDBIndex> m_idbIndex; |