| Index: Source/core/html/HTMLSummaryElement.h
|
| diff --git a/Source/core/html/HTMLSummaryElement.h b/Source/core/html/HTMLSummaryElement.h
|
| index bf11bf6440e1a518194699d00af3fe765569feda..052f10166a6556aca3f6088065d4c76f0afe9628 100644
|
| --- a/Source/core/html/HTMLSummaryElement.h
|
| +++ b/Source/core/html/HTMLSummaryElement.h
|
| @@ -31,19 +31,19 @@ class HTMLSummaryElement final : public HTMLElement {
|
| public:
|
| static PassRefPtrWillBeRawPtr<HTMLSummaryElement> create(Document&);
|
| bool isMainSummary() const;
|
| - virtual bool willRespondToMouseClickEvents() override;
|
| + bool willRespondToMouseClickEvents() override;
|
|
|
| Element* markerControl();
|
|
|
| private:
|
| explicit HTMLSummaryElement(Document&);
|
|
|
| - virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| - virtual void defaultEventHandler(Event*) override;
|
| - virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
|
| + LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| + void defaultEventHandler(Event*) override;
|
| + void didAddUserAgentShadowRoot(ShadowRoot&) override;
|
| HTMLDetailsElement* detailsElement() const;
|
|
|
| - virtual bool supportsFocus() const override;
|
| + bool supportsFocus() const override;
|
| };
|
|
|
| }
|
|
|