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

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: Rebase + final adjustments Created 6 years, 7 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
« no previous file with comments | « Source/core/html/LabelableElement.cpp ('k') | Source/modules/indexeddb/IDBAny.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/html/LabelableElement.cpp ('k') | Source/modules/indexeddb/IDBAny.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698