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 a669cec94f5160648341465ff45231c8442c367a..10b013e3b67970222b1a9c107a09862fcb14fbe4 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* createElementSync(Document&, const QualifiedName&) override |
+ { |
+ return nullptr; |
+ } |
+ |
+ HTMLElement* createElementSync(Document&, const QualifiedName&, ExceptionState&) override |
+ { |
+ return nullptr; |
+ } |
}; |
// Classes which use trace macros cannot be local because of the |