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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/DOMWindowIndexedDatabase.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/DOMWindowIndexedDatabase.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/DOMWindowIndexedDatabase.h b/third_party/WebKit/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
index 5979256b363eef1a9c1f587f73ca6e3b9fa242e1..f773b1cab19f5d8d291a4c5eae3bffecd9872057 100644
--- a/third_party/WebKit/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
+++ b/third_party/WebKit/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
@@ -35,10 +35,8 @@ namespace blink {
class IDBFactory;
class DOMWindow;
-class DOMWindowIndexedDatabase final : public NoBaseWillBeGarbageCollected<DOMWindowIndexedDatabase>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowIndexedDatabase);
- DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowIndexedDatabase);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DOMWindowIndexedDatabase);
+class DOMWindowIndexedDatabase final : public GarbageCollected<DOMWindowIndexedDatabase>, public HeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
+ USING_GARBAGE_COLLECTED_MIXIN(DOMWindowIndexedDatabase);
public:
static DOMWindowIndexedDatabase& from(LocalDOMWindow&);
@@ -55,8 +53,8 @@ private:
IDBFactory* indexedDB();
static const char* supplementName();
- RawPtrWillBeMember<LocalDOMWindow> m_window;
- PersistentWillBeMember<IDBFactory> m_idbFactory;
+ Member<LocalDOMWindow> m_window;
+ Member<IDBFactory> m_idbFactory;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698