| Index: sky/engine/core/dom/Document.cpp
|
| diff --git a/sky/engine/core/dom/Document.cpp b/sky/engine/core/dom/Document.cpp
|
| index 2c954d23de3632a453fcfa27db1c6bedbb192f53..bf1c8b4d6e6b65d7504cdc768688a4422924bd25 100644
|
| --- a/sky/engine/core/dom/Document.cpp
|
| +++ b/sky/engine/core/dom/Document.cpp
|
| @@ -66,7 +66,6 @@
|
| #include "sky/engine/core/dom/StaticNodeList.h"
|
| #include "sky/engine/core/dom/StyleEngine.h"
|
| #include "sky/engine/core/dom/Text.h"
|
| -#include "sky/engine/core/dom/custom/CustomElementMicrotaskRunQueue.h"
|
| #include "sky/engine/core/dom/custom2/new_custom_element_registry.h"
|
| #include "sky/engine/core/dom/shadow/ElementShadow.h"
|
| #include "sky/engine/core/dom/shadow/ShadowRoot.h"
|
| @@ -423,13 +422,6 @@ void Document::registerElement(const AtomicString& name, PassRefPtr<DartValue> t
|
| m_elementRegistry->RegisterElement(name, type);
|
| }
|
|
|
| -CustomElementMicrotaskRunQueue* Document::customElementMicrotaskRunQueue()
|
| -{
|
| - if (!m_customElementMicrotaskRunQueue)
|
| - m_customElementMicrotaskRunQueue = CustomElementMicrotaskRunQueue::create();
|
| - return m_customElementMicrotaskRunQueue.get();
|
| -}
|
| -
|
| void Document::setImportsController(HTMLImportsController* controller)
|
| {
|
| ASSERT(!m_importsController || !controller);
|
|
|