| Index: third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp
|
| index ea1d265c8cbb8f2f6920e49d58ba72bef9f3ca70..1a8b360e8c8c7070510136a61b44c66d7890a953 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp
|
| @@ -247,6 +247,16 @@ public:
|
| element->setCustomElementState(CustomElementState::Custom);
|
| return true;
|
| }
|
| +
|
| + HTMLElement* createElementByRunningConstructor(Document&, const QualifiedName&) override
|
| + {
|
| + return nullptr;
|
| + }
|
| +
|
| + HTMLElement* createElementByRunningConstructor(Document&, const QualifiedName&, ExceptionState&) override
|
| + {
|
| + return nullptr;
|
| + }
|
| };
|
|
|
| // Classes which use trace macros cannot be local because of the
|
|
|