| Index: Source/core/dom/custom/CustomElementRegistrationContext.cpp
|
| diff --git a/Source/core/dom/custom/CustomElementRegistrationContext.cpp b/Source/core/dom/custom/CustomElementRegistrationContext.cpp
|
| index 44ed913117fafe6656474a0690e9a5685cf2f0cf..dcd1f6fef9357cf405981f8a2576f290f30bb315 100644
|
| --- a/Source/core/dom/custom/CustomElementRegistrationContext.cpp
|
| +++ b/Source/core/dom/custom/CustomElementRegistrationContext.cpp
|
| @@ -45,9 +45,9 @@
|
|
|
| namespace WebCore {
|
|
|
| -void CustomElementRegistrationContext::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState& es)
|
| +void CustomElementRegistrationContext::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, CustomElement::NameSet validNames, ExceptionState& exceptionState)
|
| {
|
| - CustomElementDefinition* definition = m_registry.registerElement(document, constructorBuilder, type, validNames, es);
|
| + CustomElementDefinition* definition = m_registry.registerElement(document, constructorBuilder, type, validNames, exceptionState);
|
|
|
| if (!definition)
|
| return;
|
|
|