| 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 4619356f9a0409cde370d224a56475631b372245..27eb3dda4c96eb076673054ad34a1b61b6b92945 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptCustomElementDefinition.h
|
| @@ -33,7 +33,6 @@ class CORE_EXPORT ScriptCustomElementDefinition final
|
| CustomElementRegistry*,
|
| const CustomElementDescriptor&,
|
| const v8::Local<v8::Object>& constructor,
|
| - const v8::Local<v8::Object>& prototype,
|
| const v8::Local<v8::Function>& connectedCallback,
|
| const v8::Local<v8::Function>& disconnectedCallback,
|
| const v8::Local<v8::Function>& adoptedCallback,
|
| @@ -43,7 +42,6 @@ class CORE_EXPORT ScriptCustomElementDefinition final
|
| virtual ~ScriptCustomElementDefinition() = default;
|
|
|
| v8::Local<v8::Object> constructor() const;
|
| - v8::Local<v8::Object> prototype() const;
|
|
|
| HTMLElement* createElementSync(Document&, const QualifiedName&) override;
|
|
|
| @@ -66,7 +64,6 @@ class CORE_EXPORT ScriptCustomElementDefinition final
|
| ScriptState*,
|
| const CustomElementDescriptor&,
|
| const v8::Local<v8::Object>& constructor,
|
| - const v8::Local<v8::Object>& prototype,
|
| const v8::Local<v8::Function>& connectedCallback,
|
| const v8::Local<v8::Function>& disconnectedCallback,
|
| const v8::Local<v8::Function>& adoptedCallback,
|
| @@ -90,7 +87,6 @@ class CORE_EXPORT ScriptCustomElementDefinition final
|
|
|
| RefPtr<ScriptState> m_scriptState;
|
| ScopedPersistent<v8::Object> m_constructor;
|
| - ScopedPersistent<v8::Object> m_prototype;
|
| ScopedPersistent<v8::Function> m_connectedCallback;
|
| ScopedPersistent<v8::Function> m_disconnectedCallback;
|
| ScopedPersistent<v8::Function> m_adoptedCallback;
|
|
|