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

Unified Diff: Source/core/html/forms/RangeInputType.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/forms/RadioInputType.h ('k') | Source/core/html/forms/ResetInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/RangeInputType.h
diff --git a/Source/core/html/forms/RangeInputType.h b/Source/core/html/forms/RangeInputType.h
index df9310407485160296cac05d3e5da2f05a5838e7..a79476c9b76b4d6ea5aca642bc5e6b5c780f11a3 100644
--- a/Source/core/html/forms/RangeInputType.h
+++ b/Source/core/html/forms/RangeInputType.h
@@ -38,40 +38,40 @@ namespace blink {
class ExceptionState;
class SliderThumbElement;
-class RangeInputType FINAL : public InputType {
+class RangeInputType final : public InputType {
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
private:
RangeInputType(HTMLInputElement&);
- virtual void countUsage() OVERRIDE;
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual double valueAsDouble() const OVERRIDE;
- virtual void setValueAsDouble(double, TextFieldEventBehavior, ExceptionState&) const OVERRIDE;
- virtual bool typeMismatchFor(const String&) const OVERRIDE;
- virtual bool supportsRequired() const OVERRIDE;
- virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
- virtual bool isSteppable() const OVERRIDE;
- virtual void handleMouseDownEvent(MouseEvent*) OVERRIDE;
- virtual void handleTouchEvent(TouchEvent*) OVERRIDE;
- virtual bool hasTouchEventHandler() const OVERRIDE;
- virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
- virtual void createShadowSubtree() OVERRIDE;
- virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE;
- virtual String serialize(const Decimal&) const OVERRIDE;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
- virtual void sanitizeValueInResponseToMinOrMaxAttributeChange() OVERRIDE;
- virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavior) OVERRIDE;
- virtual String fallbackValue() const OVERRIDE;
- virtual String sanitizeValue(const String& proposedValue) const OVERRIDE;
- virtual bool shouldRespectListAttribute() OVERRIDE;
+ virtual void countUsage() override;
+ virtual const AtomicString& formControlType() const override;
+ virtual double valueAsDouble() const override;
+ virtual void setValueAsDouble(double, TextFieldEventBehavior, ExceptionState&) const override;
+ virtual bool typeMismatchFor(const String&) const override;
+ virtual bool supportsRequired() const override;
+ virtual StepRange createStepRange(AnyStepHandling) const override;
+ virtual bool isSteppable() const override;
+ virtual void handleMouseDownEvent(MouseEvent*) override;
+ virtual void handleTouchEvent(TouchEvent*) override;
+ virtual bool hasTouchEventHandler() const override;
+ virtual void handleKeydownEvent(KeyboardEvent*) override;
+ virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual void createShadowSubtree() override;
+ virtual Decimal parseToNumber(const String&, const Decimal&) const override;
+ virtual String serialize(const Decimal&) const override;
+ virtual void accessKeyAction(bool sendMouseEvents) override;
+ virtual void sanitizeValueInResponseToMinOrMaxAttributeChange() override;
+ virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
+ virtual String fallbackValue() const override;
+ virtual String sanitizeValue(const String& proposedValue) const override;
+ virtual bool shouldRespectListAttribute() override;
SliderThumbElement* sliderThumbElement() const;
Element* sliderTrackElement() const;
- virtual void disabledAttributeChanged() OVERRIDE;
- virtual void listAttributeTargetChanged() OVERRIDE;
+ virtual void disabledAttributeChanged() override;
+ virtual void listAttributeTargetChanged() override;
void updateTickMarkValues();
- virtual Decimal findClosestTickMarkValue(const Decimal&) OVERRIDE;
+ virtual Decimal findClosestTickMarkValue(const Decimal&) override;
bool m_tickMarkValuesDirty;
Vector<Decimal> m_tickMarkValues;
« no previous file with comments | « Source/core/html/forms/RadioInputType.h ('k') | Source/core/html/forms/ResetInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698