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

Unified Diff: Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.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/CustomElementAsyncImportMicrotaskQueue.cpp
diff --git a/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp b/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
index 5aae3a6a09e10e28b5a883560d82a1b1ff02d94c..3fcf748a7fb9fddb89e041f7df2cd196ff95dade 100644
--- a/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
+++ b/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
@@ -35,14 +35,14 @@
namespace WebCore {
-void CustomElementAsyncImportMicrotaskQueue::enqueue(PassOwnPtr<CustomElementMicrotaskImportStep> step)
+void CustomElementAsyncImportMicrotaskQueue::enqueue(PassOwnPtrWillBeRawPtr<CustomElementMicrotaskImportStep> step)
{
m_queue.append(step);
}
void CustomElementAsyncImportMicrotaskQueue::doDispatch()
{
- WillBeHeapVector<OwnPtr<CustomElementMicrotaskStep> > remaining;
+ WillBeHeapVector<OwnPtrWillBeMember<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