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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp

Issue 301073002: Oilpan: Build fix after r175007 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
diff --git a/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp b/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
index a908d4a20bd467568be7fb9d53add2b7ff358fe5..31c14b69e6a4b7894107edf1088b29023e3b9d6a 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
+++ b/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp
@@ -44,11 +44,11 @@ void CustomElementMicrotaskDispatcher::enqueue(HTMLImportLoader* parentLoader, P
m_resolutionAndImports->enqueue(step);
}
-void CustomElementMicrotaskDispatcher::enqueue(HTMLImportLoader* parentLoader, PassOwnPtr<CustomElementMicrotaskImportStep> step, bool importIsSync)
+void CustomElementMicrotaskDispatcher::enqueue(HTMLImportLoader* parentLoader, PassOwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> step, bool importIsSync)
{
ensureMicrotaskScheduledForMicrotaskSteps();
if (importIsSync)
- enqueue(parentLoader, PassOwnPtr<CustomElementMicrotaskStep>(step));
+ enqueue(parentLoader, PassOwnPtrWillBeRawPtr<CustomElementMicrotaskStep>(step));
else
m_asyncImports->enqueue(step);
}
@@ -122,6 +122,7 @@ void CustomElementMicrotaskDispatcher::doDispatch()
void CustomElementMicrotaskDispatcher::trace(Visitor* visitor)
{
visitor->trace(m_resolutionAndImports);
+ visitor->trace(m_asyncImports);
#if ENABLE(OILPAN)
visitor->trace(m_elements);
#endif

Powered by Google App Engine
This is Rietveld 408576698