| Index: Source/modules/indexeddb/IDBAny.h
|
| diff --git a/Source/modules/indexeddb/IDBAny.h b/Source/modules/indexeddb/IDBAny.h
|
| index b7916c03f85fcd4d072547d587337e8bea799f7c..7f5d14db4b624737b1074c3fee29687dd4af13a0 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(PassRefPtr<IDBDatabase>);
|
| explicit IDBAny(PassRefPtr<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 RefPtr<IDBDatabase> m_idbDatabase;
|
| const RefPtr<IDBIndex> m_idbIndex;
|
|
|