| Index: third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
|
| index 45d45d024e94bedd999c4ed78dc10fc98f28d3fe..04036567cdeea5d753e5ddb9213cd805effeaf4c 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementRegistry.h
|
| @@ -39,16 +39,16 @@ class CORE_EXPORT CustomElementRegistry final
|
|
|
| virtual ~CustomElementRegistry() = default;
|
|
|
| - void define(ScriptState*,
|
| - const AtomicString& name,
|
| - const ScriptValue& constructor,
|
| - const ElementDefinitionOptions&,
|
| - ExceptionState&);
|
| -
|
| - void define(const AtomicString& name,
|
| - CustomElementDefinitionBuilder&,
|
| - const ElementDefinitionOptions&,
|
| - ExceptionState&);
|
| + CustomElementDefinition* define(ScriptState*,
|
| + const AtomicString& name,
|
| + const ScriptValue& constructor,
|
| + const ElementDefinitionOptions&,
|
| + ExceptionState&);
|
| +
|
| + CustomElementDefinition* define(const AtomicString& name,
|
| + CustomElementDefinitionBuilder&,
|
| + const ElementDefinitionOptions&,
|
| + ExceptionState&);
|
|
|
| ScriptValue get(const AtomicString& name);
|
| bool nameIsDefined(const AtomicString& name) const;
|
|
|