| 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 "core/dom/custom/CustomElementMicrotaskDispatcher.h" | 5 #include "core/dom/custom/CustomElementMicrotaskDispatcher.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/Microtask.h" | 7 #include "core/dom/Microtask.h" |
| 8 #include "core/dom/custom/CustomElementCallbackQueue.h" | 8 #include "core/dom/custom/CustomElementCallbackQueue.h" |
| 9 #include "core/dom/custom/CustomElementMicrotaskImportStep.h" | 9 #include "core/dom/custom/CustomElementMicrotaskImportStep.h" |
| 10 #include "core/dom/custom/CustomElementProcessingStack.h" | 10 #include "core/dom/custom/CustomElementProcessingStack.h" |
| 11 #include "core/dom/custom/CustomElementScheduler.h" | 11 #include "core/dom/custom/CustomElementScheduler.h" |
| 12 #include "wtf/MainThread.h" | 12 #include "wtf/MainThread.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 static const CustomElementCallbackQueue::ElementQueueId kMicrotaskQueueId = 0; | 16 static const CustomElementCallbackQueue::ElementQueueId kMicrotaskQueueId = 0; |
| 17 | 17 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 } | 82 } |
| 83 | 83 |
| 84 DEFINE_TRACE(CustomElementMicrotaskDispatcher) | 84 DEFINE_TRACE(CustomElementMicrotaskDispatcher) |
| 85 { | 85 { |
| 86 #if ENABLE(OILPAN) | 86 #if ENABLE(OILPAN) |
| 87 visitor->trace(m_elements); | 87 visitor->trace(m_elements); |
| 88 #endif | 88 #endif |
| 89 } | 89 } |
| 90 | 90 |
| 91 } // namespace blink | 91 } // namespace blink |
| OLD | NEW |