| Index: Source/core/html/shadow/SliderThumbElement.h
|
| diff --git a/Source/core/html/shadow/SliderThumbElement.h b/Source/core/html/shadow/SliderThumbElement.h
|
| index 91cb15b3607c9506d3cfd4a44aa890a18c33d08f..3769820163e00ef937499b3e9157d3d7093edb37 100644
|
| --- a/Source/core/html/shadow/SliderThumbElement.h
|
| +++ b/Source/core/html/shadow/SliderThumbElement.h
|
| @@ -49,23 +49,23 @@ public:
|
| void setPositionFromValue();
|
|
|
| void dragFrom(const LayoutPoint&);
|
| - virtual void defaultEventHandler(Event*) override;
|
| - virtual bool willRespondToMouseMoveEvents() override;
|
| - virtual bool willRespondToMouseClickEvents() override;
|
| - virtual void detach(const AttachContext& = AttachContext()) override;
|
| - virtual const AtomicString& shadowPseudoId() const override;
|
| + void defaultEventHandler(Event*) override;
|
| + bool willRespondToMouseMoveEvents() override;
|
| + bool willRespondToMouseClickEvents() override;
|
| + void detach(const AttachContext& = AttachContext()) override;
|
| + const AtomicString& shadowPseudoId() const override;
|
| HTMLInputElement* hostInput() const;
|
| void setPositionFromPoint(const LayoutPoint&);
|
| void stopDragging();
|
|
|
| private:
|
| SliderThumbElement(Document&);
|
| - virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| - virtual PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
|
| - virtual bool isDisabledFormControl() const override;
|
| - virtual bool matchesReadOnlyPseudoClass() const override;
|
| - virtual bool matchesReadWritePseudoClass() const override;
|
| - virtual Node* focusDelegate() override;
|
| + LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| + PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
|
| + bool isDisabledFormControl() const override;
|
| + bool matchesReadOnlyPseudoClass() const override;
|
| + bool matchesReadWritePseudoClass() const override;
|
| + Node* focusDelegate() override;
|
| void startDragging();
|
|
|
| bool m_inDragMode;
|
| @@ -85,8 +85,8 @@ public:
|
|
|
| private:
|
| explicit SliderContainerElement(Document&);
|
| - virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| - virtual const AtomicString& shadowPseudoId() const override;
|
| + LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| + const AtomicString& shadowPseudoId() const override;
|
| };
|
|
|
| }
|
|
|