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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.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/CustomElementProcessingStack.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.h b/third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.h
index 9e268584bfa62a37051152018b63bc8db32a9b94..f85bf0cb7cfafff8a1356d572836f31a12102e95 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.h
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementProcessingStack.h
@@ -37,8 +37,7 @@
namespace blink {
-class CORE_EXPORT CustomElementProcessingStack : public NoBaseWillBeGarbageCollectedFinalized<CustomElementProcessingStack> {
- USING_FAST_MALLOC_WILL_BE_REMOVED(CustomElementProcessingStack);
+class CORE_EXPORT CustomElementProcessingStack : public GarbageCollectedFinalized<CustomElementProcessingStack> {
WTF_MAKE_NONCOPYABLE(CustomElementProcessingStack);
public:
// This is stack allocated in many DOM callbacks. Make it cheap.
@@ -100,7 +99,7 @@ private:
// stack appear toward the head of the vector. The first element
// is a null sentinel value.
static const size_t kNumSentinels = 1;
- WillBeHeapVector<RawPtrWillBeMember<CustomElementCallbackQueue>> m_flattenedProcessingStack;
+ HeapVector<Member<CustomElementCallbackQueue>> m_flattenedProcessingStack;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698