Index: third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h |
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h b/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h |
index 125ce0cc64ba2d9d84f0ddde559f9ada57a9c625..4619356f9a0409cde370d224a56475631b372245 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h |
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h |
@@ -46,9 +46,6 @@ class CORE_EXPORT ScriptCustomElementDefinition final |
v8::Local<v8::Object> prototype() const; |
HTMLElement* createElementSync(Document&, const QualifiedName&) override; |
- HTMLElement* createElementSync(Document&, |
- const QualifiedName&, |
- ExceptionState&) override; |
bool hasConnectedCallback() const override; |
bool hasDisconnectedCallback() const override; |
@@ -86,6 +83,11 @@ class CORE_EXPORT ScriptCustomElementDefinition final |
int argc = 0, |
v8::Local<v8::Value> argv[] = nullptr); |
+ HTMLElement* handleCreateElementSyncException(Document&, |
+ const QualifiedName& tagName, |
+ v8::Isolate*, |
+ ExceptionState&); |
+ |
RefPtr<ScriptState> m_scriptState; |
ScopedPersistent<v8::Object> m_constructor; |
ScopedPersistent<v8::Object> m_prototype; |