OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "core/dom/custom/CustomElementMicrotaskDispatcher.h" | 6 #include "core/dom/custom/CustomElementMicrotaskDispatcher.h" |
7 | 7 |
8 #include "core/dom/Microtask.h" | 8 #include "core/dom/Microtask.h" |
9 #include "core/dom/custom/CustomElementCallbackQueue.h" | 9 #include "core/dom/custom/CustomElementCallbackQueue.h" |
10 #include "core/dom/custom/CustomElementMicrotaskImportStep.h" | 10 #include "core/dom/custom/CustomElementMicrotaskImportStep.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // Created callback may enqueue an attached callback. | 75 // Created callback may enqueue an attached callback. |
76 CustomElementProcessingStack::CallbackDeliveryScope scope; | 76 CustomElementProcessingStack::CallbackDeliveryScope scope; |
77 element->processInElementQueue(kMicrotaskQueueId); | 77 element->processInElementQueue(kMicrotaskQueueId); |
78 } | 78 } |
79 | 79 |
80 m_elements.clear(); | 80 m_elements.clear(); |
81 CustomElementScheduler::microtaskDispatcherDidFinish(); | 81 CustomElementScheduler::microtaskDispatcherDidFinish(); |
82 m_phase = Quiescent; | 82 m_phase = Quiescent; |
83 } | 83 } |
84 | 84 |
85 void CustomElementMicrotaskDispatcher::trace(Visitor* visitor) | 85 DEFINE_TRACE(CustomElementMicrotaskDispatcher) |
86 { | 86 { |
87 #if ENABLE(OILPAN) | 87 #if ENABLE(OILPAN) |
88 visitor->trace(m_elements); | 88 visitor->trace(m_elements); |
89 #endif | 89 #endif |
90 } | 90 } |
91 | 91 |
92 } // namespace blink | 92 } // namespace blink |
OLD | NEW |