Index: Source/core/html/forms/TimeInputType.h |
diff --git a/Source/core/html/forms/TimeInputType.h b/Source/core/html/forms/TimeInputType.h |
index 82a540d52f66838b5df1595a45824f0dd15cb893..99de0353c58547a95f35169cdfc4c4eee2a8fa0b 100644 |
--- a/Source/core/html/forms/TimeInputType.h |
+++ b/Source/core/html/forms/TimeInputType.h |
@@ -42,7 +42,7 @@ typedef BaseMultipleFieldsDateAndTimeInputType BaseTimeInputType; |
typedef BaseChooserOnlyDateAndTimeInputType BaseTimeInputType; |
#endif |
-class TimeInputType : public BaseTimeInputType { |
+class TimeInputType FINAL : public BaseTimeInputType { |
public: |
static PassRefPtr<InputType> create(HTMLInputElement&); |
@@ -59,9 +59,9 @@ private: |
virtual String localizeValue(const String&) const OVERRIDE; |
// 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; |
+ 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 |
}; |