| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistrationContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistrationContext.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistrationContext.cpp
|
| index ee05a67de77277b8085aa68f9e3992ac67012031..0a0fcd3c7e71cbf0e369960cfade0517ae7f5987 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistrationContext.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementRegistrationContext.cpp
|
| @@ -49,9 +49,9 @@ V0CustomElementRegistrationContext::V0CustomElementRegistrationContext()
|
| {
|
| }
|
|
|
| -void V0CustomElementRegistrationContext::registerElement(Document* document, V0CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, V0CustomElement::NameSet validNames, ExceptionState& exceptionState)
|
| +void V0CustomElementRegistrationContext::registerElement(ScriptState* scriptState, Document* document, V0CustomElementConstructorBuilder* constructorBuilder, const AtomicString& type, V0CustomElement::NameSet validNames, ExceptionState& exceptionState)
|
| {
|
| - V0CustomElementDefinition* definition = m_registry.registerElement(document, constructorBuilder, type, validNames, exceptionState);
|
| + V0CustomElementDefinition* definition = m_registry.registerElement(scriptState, document, constructorBuilder, type, validNames, exceptionState);
|
|
|
| if (!definition)
|
| return;
|
|
|