Index: Source/core/html/forms/DateInputType.h |
diff --git a/Source/core/html/forms/DateInputType.h b/Source/core/html/forms/DateInputType.h |
index 3f0f74997aeea6f745b58172f7197bfb1409780c..cc2b188354184ee5da1407e0d402eb674585de5d 100644 |
--- a/Source/core/html/forms/DateInputType.h |
+++ b/Source/core/html/forms/DateInputType.h |
@@ -42,24 +42,24 @@ typedef BaseMultipleFieldsDateAndTimeInputType BaseDateInputType; |
typedef BaseChooserOnlyDateAndTimeInputType BaseDateInputType; |
#endif |
-class DateInputType FINAL : public BaseDateInputType { |
+class DateInputType final : public BaseDateInputType { |
public: |
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); |
private: |
DateInputType(HTMLInputElement&); |
- virtual void countUsage() OVERRIDE; |
- virtual const AtomicString& formControlType() const OVERRIDE; |
- virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; |
- virtual bool parseToDateComponentsInternal(const String&, DateComponents*) const OVERRIDE; |
- virtual bool setMillisecondToDateComponents(double, DateComponents*) const OVERRIDE; |
- virtual void warnIfValueIsInvalid(const String&) const OVERRIDE; |
+ virtual void countUsage() override; |
+ virtual const AtomicString& formControlType() const override; |
+ virtual StepRange createStepRange(AnyStepHandling) const override; |
+ virtual bool parseToDateComponentsInternal(const String&, DateComponents*) const override; |
+ virtual bool setMillisecondToDateComponents(double, DateComponents*) const override; |
+ virtual void warnIfValueIsInvalid(const String&) const override; |
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
// BaseMultipleFieldsDateAndTimeInputType functions |
- virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const OVERRIDE; |
- virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const DateComponents&) const OVERRIDE; |
- virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRIDE; |
+ virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const override; |
+ virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const DateComponents&) const override; |
+ virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override; |
#endif |
}; |