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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.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/core/dom/custom/CustomElementMicrotaskDispatcher.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
index 6a07de27b474732b54460eed8364a3e654666057..a81801b1b963f8c4673e6e23df20ffa0e3c328a1 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
@@ -14,10 +14,8 @@ namespace blink {
class CustomElementCallbackQueue;
-class CustomElementMicrotaskDispatcher final : public NoBaseWillBeGarbageCollected<CustomElementMicrotaskDispatcher> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CustomElementMicrotaskDispatcher);
+class CustomElementMicrotaskDispatcher final : public GarbageCollected<CustomElementMicrotaskDispatcher> {
WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskDispatcher);
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(CustomElementMicrotaskDispatcher);
public:
static CustomElementMicrotaskDispatcher& instance();
@@ -43,7 +41,7 @@ private:
DispatchingCallbacks
} m_phase;
- WillBeHeapVector<RawPtrWillBeMember<CustomElementCallbackQueue>> m_elements;
+ HeapVector<Member<CustomElementCallbackQueue>> m_elements;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698