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

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

Issue 131793003: Update remaining HTML classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove useless FINAL Created 6 years, 11 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 c1d85a68c7be5701e76f307a3138e876d460fb01..39bbe015d46605ea430f2967cb21f9620d88fedd 100644
--- a/Source/core/html/shadow/SliderThumbElement.h
+++ b/Source/core/html/shadow/SliderThumbElement.h
@@ -51,7 +51,7 @@ public:
void setPositionFromValue();
void dragFrom(const LayoutPoint&);
- virtual void defaultEventHandler(Event*);
+ virtual void defaultEventHandler(Event*) OVERRIDE;
virtual bool willRespondToMouseMoveEvents() OVERRIDE;
virtual bool willRespondToMouseClickEvents() OVERRIDE;
virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
@@ -62,12 +62,12 @@ public:
private:
SliderThumbElement(Document&);
- virtual RenderObject* createRenderer(RenderStyle*);
- virtual PassRefPtr<Element> cloneElementWithoutAttributesAndChildren();
+ virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual PassRefPtr<Element> cloneElementWithoutAttributesAndChildren() OVERRIDE;
virtual bool isDisabledFormControl() const OVERRIDE;
virtual bool matchesReadOnlyPseudoClass() const OVERRIDE;
virtual bool matchesReadWritePseudoClass() const OVERRIDE;
- virtual Node* focusDelegate();
+ virtual Node* focusDelegate() OVERRIDE;
void startDragging();
bool m_inDragMode;
@@ -89,7 +89,7 @@ public:
void updateAppearance(RenderStyle* parentStyle);
private:
- virtual bool isSliderThumb() const;
+ virtual bool isSliderThumb() const OVERRIDE;
virtual bool supportsPartialLayout() const OVERRIDE { return false; }
};
@@ -101,8 +101,8 @@ public:
private:
SliderContainerElement(Document&);
- virtual RenderObject* createRenderer(RenderStyle*);
- virtual const AtomicString& shadowPseudoId() const;
+ virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual 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