| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h" | 35 #include "core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h" |
| 36 | 36 |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 39 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 40 typedef BaseMultipleFieldsDateAndTimeInputType BaseMonthInputType; | 40 typedef BaseMultipleFieldsDateAndTimeInputType BaseMonthInputType; |
| 41 #else | 41 #else |
| 42 typedef BaseChooserOnlyDateAndTimeInputType BaseMonthInputType; | 42 typedef BaseChooserOnlyDateAndTimeInputType BaseMonthInputType; |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 class MonthInputType FINAL : public BaseMonthInputType { | 45 class MonthInputType final : public BaseMonthInputType { |
| 46 public: | 46 public: |
| 47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); | 47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); |
| 48 | 48 |
| 49 private: | 49 private: |
| 50 MonthInputType(HTMLInputElement& element) : BaseMonthInputType(element) { } | 50 MonthInputType(HTMLInputElement& element) : BaseMonthInputType(element) { } |
| 51 virtual void countUsage() OVERRIDE; | 51 virtual void countUsage() override; |
| 52 virtual const AtomicString& formControlType() const OVERRIDE; | 52 virtual const AtomicString& formControlType() const override; |
| 53 virtual double valueAsDate() const OVERRIDE; | 53 virtual double valueAsDate() const override; |
| 54 virtual String serializeWithMilliseconds(double) const OVERRIDE; | 54 virtual String serializeWithMilliseconds(double) const override; |
| 55 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE; | 55 virtual Decimal parseToNumber(const String&, const Decimal&) const override; |
| 56 virtual Decimal defaultValueForStepUp() const OVERRIDE; | 56 virtual Decimal defaultValueForStepUp() const override; |
| 57 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; | 57 virtual StepRange createStepRange(AnyStepHandling) const override; |
| 58 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c
onst OVERRIDE; | 58 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c
onst override; |
| 59 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O
VERRIDE; | 59 virtual bool setMillisecondToDateComponents(double, DateComponents*) const o
verride; |
| 60 virtual bool canSetSuggestedValue() OVERRIDE; | 60 virtual bool canSetSuggestedValue() override; |
| 61 | 61 |
| 62 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 62 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 63 // BaseMultipleFieldsDateAndTimeInputType functions | 63 // BaseMultipleFieldsDateAndTimeInputType functions |
| 64 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O
VERRIDE; | 64 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const o
verride; |
| 65 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c
onst DateComponents&) const OVERRIDE; | 65 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c
onst DateComponents&) const override; |
| 66 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h
asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID
E; | 66 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h
asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const overrid
e; |
| 67 #endif | 67 #endif |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif // MonthInputType_h | 72 #endif // MonthInputType_h |
| OLD | NEW |