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

Unified Diff: third_party/WebKit/Source/modules/quota/DOMWindowQuota.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/quota/DOMWindowQuota.h
diff --git a/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h b/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
index 222c7ffb5098d2822fda863b8147941c0a45d5f9..7c525a9930a6761562ab47caa359ab4e5f9a9f84 100644
--- a/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
+++ b/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
@@ -40,10 +40,8 @@ namespace blink {
class DeprecatedStorageInfo;
class DOMWindow;
-class DOMWindowQuota final : public NoBaseWillBeGarbageCollected<DOMWindowQuota>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowQuota);
- DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowQuota);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DOMWindowQuota);
+class DOMWindowQuota final : public GarbageCollected<DOMWindowQuota>, public HeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
+ USING_GARBAGE_COLLECTED_MIXIN(DOMWindowQuota);
public:
static DOMWindowQuota& from(LocalDOMWindow&);
static DeprecatedStorageInfo* webkitStorageInfo(DOMWindow&);
@@ -55,7 +53,7 @@ private:
explicit DOMWindowQuota(LocalDOMWindow&);
static const char* supplementName();
- mutable PersistentWillBeMember<DeprecatedStorageInfo> m_storageInfo;
+ mutable Member<DeprecatedStorageInfo> m_storageInfo;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698