Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Unified Diff: Source/modules/indexeddb/IDBAny.h

Issue 258143002: Oilpan: move DOM string collection objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698