| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| similarity index 80%
|
| rename from third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
|
| rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| index fa6f1717a6a3b742e23e0318c21fa6e2293b4474..2a131753e2aa61bfd278b5ed7e340378914e865e 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
|
| @@ -28,23 +28,23 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#include "core/dom/custom/CustomElementAsyncImportMicrotaskQueue.h"
|
| +#include "core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.h"
|
|
|
| -#include "core/dom/custom/CustomElementMicrotaskImportStep.h"
|
| +#include "core/dom/custom/V0CustomElementMicrotaskImportStep.h"
|
|
|
| namespace blink {
|
|
|
| -void CustomElementAsyncImportMicrotaskQueue::enqueue(CustomElementMicrotaskStep* step)
|
| +void V0CustomElementAsyncImportMicrotaskQueue::enqueue(V0CustomElementMicrotaskStep* step)
|
| {
|
| m_queue.append(step);
|
| }
|
|
|
| -void CustomElementAsyncImportMicrotaskQueue::doDispatch()
|
| +void V0CustomElementAsyncImportMicrotaskQueue::doDispatch()
|
| {
|
| - HeapVector<Member<CustomElementMicrotaskStep>> remaining;
|
| + HeapVector<Member<V0CustomElementMicrotaskStep>> remaining;
|
|
|
| for (unsigned i = 0; i < m_queue.size(); ++i) {
|
| - if (CustomElementMicrotaskStep::Processing == m_queue[i]->process())
|
| + if (V0CustomElementMicrotaskStep::Processing == m_queue[i]->process())
|
| remaining.append(m_queue[i].release());
|
| }
|
|
|
|
|