Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Unified Diff: Source/core/html/shadow/SliderThumbElement.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/shadow/ProgressShadowElement.h ('k') | Source/core/html/shadow/SpinButtonElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
};
}
« no previous file with comments | « Source/core/html/shadow/ProgressShadowElement.h ('k') | Source/core/html/shadow/SpinButtonElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698