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

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

Issue 934163004: Modernize coding style in core/html/forms/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 10 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/RangeInputType.cpp » ('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 f134751ec296852d448c8cb507e3ce9b0f03c8d9..5abd42f24ff743a7d9fe0823269ba7638f0c7474 100644
--- a/Source/core/html/forms/RangeInputType.h
+++ b/Source/core/html/forms/RangeInputType.h
@@ -44,34 +44,35 @@ public:
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 LayoutObject* createRenderer(const LayoutStyle&) 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;
+ void countUsage() override;
+ const AtomicString& formControlType() const override;
+ double valueAsDouble() const override;
+ void setValueAsDouble(double, TextFieldEventBehavior, ExceptionState&) const override;
+ bool typeMismatchFor(const String&) const override;
+ bool supportsRequired() const override;
+ StepRange createStepRange(AnyStepHandling) const override;
+ bool isSteppable() const override;
+ void handleMouseDownEvent(MouseEvent*) override;
+ void handleTouchEvent(TouchEvent*) override;
+ bool hasTouchEventHandler() const override;
+ void handleKeydownEvent(KeyboardEvent*) override;
+ LayoutObject* createRenderer(const LayoutStyle&) const override;
+ void createShadowSubtree() override;
+ Decimal parseToNumber(const String&, const Decimal&) const override;
+ String serialize(const Decimal&) const override;
+ void accessKeyAction(bool sendMouseEvents) override;
+ void sanitizeValueInResponseToMinOrMaxAttributeChange() override;
+ void setValue(const String&, bool valueChanged, TextFieldEventBehavior) override;
+ String fallbackValue() const override;
+ String sanitizeValue(const String& proposedValue) const override;
+ bool shouldRespectListAttribute() override;
+ void disabledAttributeChanged() override;
+ void listAttributeTargetChanged() override;
+ Decimal findClosestTickMarkValue(const Decimal&) override;
+
SliderThumbElement* sliderThumbElement() const;
Element* sliderTrackElement() const;
- virtual void disabledAttributeChanged() override;
- virtual void listAttributeTargetChanged() override;
void updateTickMarkValues();
- virtual Decimal findClosestTickMarkValue(const Decimal&) override;
// InputTypeView function:
virtual void updateView() override;
« no previous file with comments | « Source/core/html/forms/RadioInputType.h ('k') | Source/core/html/forms/RangeInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698