| Index: sky/engine/core/dom/custom/CustomElementRegistrationContext.cpp
|
| diff --git a/sky/engine/core/dom/custom/CustomElementRegistrationContext.cpp b/sky/engine/core/dom/custom/CustomElementRegistrationContext.cpp
|
| index 97a3ca747f1cda121e01d12fe7607380ea23d25e..2ea7da1947e0b560965bee4429101db2a6d9f9d1 100644
|
| --- a/sky/engine/core/dom/custom/CustomElementRegistrationContext.cpp
|
| +++ b/sky/engine/core/dom/custom/CustomElementRegistrationContext.cpp
|
| @@ -47,9 +47,9 @@ CustomElementRegistrationContext::CustomElementRegistrationContext()
|
| {
|
| }
|
|
|
| -void CustomElementRegistrationContext::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState& exceptionState)
|
| +void CustomElementRegistrationContext::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, ExceptionState& exceptionState)
|
| {
|
| - m_registry.registerElement(document, constructorBuilder, type, validNames, exceptionState);
|
| + m_registry.registerElement(document, constructorBuilder, type, exceptionState);
|
| }
|
|
|
| PassRefPtr<Element> CustomElementRegistrationContext::createCustomTagElement(Document& document, const QualifiedName& tagName)
|
|
|