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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.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/CustomElementMicrotaskQueueBase.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
index 0990fde1d72775ac6839790a296e6a9f96ecdcfb..ccd87d5e5cbf8735ee518c62a3292abf30a64a06 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.h
@@ -16,7 +16,7 @@
namespace blink {
-class CustomElementMicrotaskQueueBase : public RefCountedWillBeGarbageCollectedFinalized<CustomElementMicrotaskQueueBase> {
+class CustomElementMicrotaskQueueBase : public GarbageCollectedFinalized<CustomElementMicrotaskQueueBase> {
WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskQueueBase);
public:
virtual ~CustomElementMicrotaskQueueBase() { }
@@ -34,7 +34,7 @@ protected:
CustomElementMicrotaskQueueBase() : m_inDispatch(false) { }
virtual void doDispatch() = 0;
- WillBeHeapVector<OwnPtrWillBeMember<CustomElementMicrotaskStep>> m_queue;
+ HeapVector<Member<CustomElementMicrotaskStep>> m_queue;
bool m_inDispatch;
};

Powered by Google App Engine
This is Rietveld 408576698