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

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

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/modules/indexeddb/IDBAny.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBAny.h b/third_party/WebKit/Source/modules/indexeddb/IDBAny.h
index 9ed6f6b1da7385830ebd5537f7e4c6c8ca84c715..39c30dcc447e67414a050da60371211f15e3cc25 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBAny.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBAny.h
@@ -60,7 +60,7 @@ public:
{
return new IDBAny(idbObject);
}
- static IDBAny* create(PassRefPtrWillBeRawPtr<DOMStringList> domStringList)
+ static IDBAny* create(RawPtr<DOMStringList> domStringList)
{
return new IDBAny(domStringList);
}
@@ -110,7 +110,7 @@ public:
private:
explicit IDBAny(Type);
- explicit IDBAny(PassRefPtrWillBeRawPtr<DOMStringList>);
+ explicit IDBAny(RawPtr<DOMStringList>);
explicit IDBAny(IDBCursor*);
explicit IDBAny(IDBDatabase*);
explicit IDBAny(IDBIndex*);
@@ -123,7 +123,7 @@ private:
const Type m_type;
// Only one of the following should ever be in use at any given time.
- const RefPtrWillBeMember<DOMStringList> m_domStringList;
+ const Member<DOMStringList> m_domStringList;
const Member<IDBCursor> m_idbCursor;
const Member<IDBDatabase> m_idbDatabase;
const Member<IDBIndex> m_idbIndex;

Powered by Google App Engine
This is Rietveld 408576698