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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp

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/CustomElementAsyncImportMicrotaskQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
index 8ee92d4f6c036e559fc377febf44a3c710a8f0ff..925c05403cd2f789a6cf2f778861b0721e0e5156 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
@@ -34,14 +34,14 @@
namespace blink {
-void CustomElementAsyncImportMicrotaskQueue::enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep> step)
+void CustomElementAsyncImportMicrotaskQueue::enqueue(RawPtr<CustomElementMicrotaskStep> step)
{
m_queue.append(step);
}
void CustomElementAsyncImportMicrotaskQueue::doDispatch()
{
- WillBeHeapVector<OwnPtrWillBeMember<CustomElementMicrotaskStep>> remaining;
+ HeapVector<Member<CustomElementMicrotaskStep>> remaining;
for (unsigned i = 0; i < m_queue.size(); ++i) {
if (CustomElementMicrotaskStep::Processing == m_queue[i]->process())

Powered by Google App Engine
This is Rietveld 408576698