Chromium Code Reviews

Unified Diff: Source/core/html/forms/DateTimeLocalInputType.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/html/forms/DateInputType.h ('k') | Source/core/html/forms/EmailInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/DateTimeLocalInputType.h
diff --git a/Source/core/html/forms/DateTimeLocalInputType.h b/Source/core/html/forms/DateTimeLocalInputType.h
index 7deb75d6641797d1c1e4044dfa56b5d2bdc01831..5812178d37fe4dbdb321eb6652deadd24c3c0fd1 100644
--- a/Source/core/html/forms/DateTimeLocalInputType.h
+++ b/Source/core/html/forms/DateTimeLocalInputType.h
@@ -39,9 +39,9 @@ namespace blink {
class ExceptionState;
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
-typedef BaseMultipleFieldsDateAndTimeInputType BaseDateTimeLocalInputType;
+using BaseDateTimeLocalInputType = BaseMultipleFieldsDateAndTimeInputType;
#else
-typedef BaseChooserOnlyDateAndTimeInputType BaseDateTimeLocalInputType;
+using BaseDateTimeLocalInputType = BaseChooserOnlyDateAndTimeInputType;
#endif
class DateTimeLocalInputType final : public BaseDateTimeLocalInputType {
@@ -50,19 +50,19 @@ public:
private:
DateTimeLocalInputType(HTMLInputElement& element) : BaseDateTimeLocalInputType(element) { }
- virtual void countUsage() override;
- virtual const AtomicString& formControlType() const override;
- virtual double valueAsDate() const override;
- virtual void setValueAsDate(double, ExceptionState&) const override;
- virtual StepRange createStepRange(AnyStepHandling) const override;
- virtual bool parseToDateComponentsInternal(const String&, DateComponents*) const override;
- virtual bool setMillisecondToDateComponents(double, DateComponents*) const override;
+ void countUsage() override;
+ const AtomicString& formControlType() const override;
+ double valueAsDate() const override;
+ void setValueAsDate(double, ExceptionState&) const override;
+ StepRange createStepRange(AnyStepHandling) const override;
+ bool parseToDateComponentsInternal(const String&, DateComponents*) const override;
+ bool setMillisecondToDateComponents(double, DateComponents*) const override;
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
// BaseMultipleFieldsDateAndTimeInputType functions
- virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const override final;
- virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const DateComponents&) const override final;
- virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override;
+ String formatDateTimeFieldsState(const DateTimeFieldsState&) const override final;
+ void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const DateComponents&) const override final;
+ bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override;
#endif
};
« no previous file with comments | « Source/core/html/forms/DateInputType.h ('k') | Source/core/html/forms/EmailInputType.h » ('j') | no next file with comments »

Powered by Google App Engine