| Index: Source/core/dom/custom/CustomElementCallbackInvocation.cpp
|
| diff --git a/Source/core/dom/custom/CustomElementCallbackInvocation.cpp b/Source/core/dom/custom/CustomElementCallbackInvocation.cpp
|
| index 90280cfee91f771fcc77cf0ab1e04b30a9c39a4c..a219b056cfd7eddfbe1f7f8773e16f9f55cc4993 100644
|
| --- a/Source/core/dom/custom/CustomElementCallbackInvocation.cpp
|
| +++ b/Source/core/dom/custom/CustomElementCallbackInvocation.cpp
|
| @@ -42,7 +42,7 @@ public:
|
| AttachedDetachedInvocation(PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks>, CustomElementLifecycleCallbacks::CallbackType which);
|
|
|
| private:
|
| - virtual void dispatch(Element*) override;
|
| + void dispatch(Element*) override;
|
|
|
| CustomElementLifecycleCallbacks::CallbackType m_which;
|
| };
|
| @@ -73,7 +73,7 @@ public:
|
| AttributeChangedInvocation(PassRefPtrWillBeRawPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
|
|
|
| private:
|
| - virtual void dispatch(Element*) override;
|
| + void dispatch(Element*) override;
|
|
|
| AtomicString m_name;
|
| AtomicString m_oldValue;
|
| @@ -101,8 +101,8 @@ public:
|
| }
|
|
|
| private:
|
| - virtual void dispatch(Element*) override;
|
| - virtual bool isCreatedCallback() const override { return true; }
|
| + void dispatch(Element*) override;
|
| + bool isCreatedCallback() const override { return true; }
|
| };
|
|
|
| void CreatedInvocation::dispatch(Element* element)
|
|
|