| Index: third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| index 76009832c858a2ea170402c00530bee2554ecff8..d28bfd30f461348fd27a2c28d5d962f0c7b670b3 100644
|
| --- a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
|
| @@ -33,7 +33,7 @@
|
| #include "core/dom/Document.h"
|
| #include "core/dom/DocumentParser.h"
|
| #include "core/dom/StyleEngine.h"
|
| -#include "core/dom/custom/CustomElementSyncMicrotaskQueue.h"
|
| +#include "core/dom/custom/V0CustomElementSyncMicrotaskQueue.h"
|
| #include "core/html/HTMLDocument.h"
|
| #include "core/html/imports/HTMLImportChild.h"
|
| #include "core/html/imports/HTMLImportsController.h"
|
| @@ -46,7 +46,7 @@ namespace blink {
|
| HTMLImportLoader::HTMLImportLoader(HTMLImportsController* controller)
|
| : m_controller(controller)
|
| , m_state(StateLoading)
|
| - , m_microtaskQueue(CustomElementSyncMicrotaskQueue::create())
|
| + , m_microtaskQueue(V0CustomElementSyncMicrotaskQueue::create())
|
| {
|
| }
|
|
|
| @@ -211,7 +211,7 @@ bool HTMLImportLoader::shouldBlockScriptExecution() const
|
| return firstImport()->state().shouldBlockScriptExecution();
|
| }
|
|
|
| -CustomElementSyncMicrotaskQueue* HTMLImportLoader::microtaskQueue() const
|
| +V0CustomElementSyncMicrotaskQueue* HTMLImportLoader::microtaskQueue() const
|
| {
|
| return m_microtaskQueue;
|
| }
|
|
|