| 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 29 matching lines...) Expand all Loading... |
| 40 using BaseWeekInputType = BaseMultipleFieldsDateAndTimeInputType; | 40 using BaseWeekInputType = BaseMultipleFieldsDateAndTimeInputType; |
| 41 #else | 41 #else |
| 42 using BaseWeekInputType = BaseChooserOnlyDateAndTimeInputType; | 42 using BaseWeekInputType = BaseChooserOnlyDateAndTimeInputType; |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 class WeekInputType final : public BaseWeekInputType { | 45 class WeekInputType final : public BaseWeekInputType { |
| 46 public: | 46 public: |
| 47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); | 47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); |
| 48 | 48 |
| 49 private: | 49 private: |
| 50 WeekInputType(HTMLInputElement& element) : BaseWeekInputType(element) { } | 50 explicit WeekInputType(HTMLInputElement& element) : BaseWeekInputType(elemen
t) { } |
| 51 |
| 51 void countUsage() override; | 52 void countUsage() override; |
| 52 const AtomicString& formControlType() const override; | 53 const AtomicString& formControlType() const override; |
| 53 StepRange createStepRange(AnyStepHandling) const override; | 54 StepRange createStepRange(AnyStepHandling) const override; |
| 54 bool parseToDateComponentsInternal(const String&, DateComponents*) const ove
rride; | 55 bool parseToDateComponentsInternal(const String&, DateComponents*) const ove
rride; |
| 55 bool setMillisecondToDateComponents(double, DateComponents*) const override; | 56 bool setMillisecondToDateComponents(double, DateComponents*) const override; |
| 56 | 57 |
| 57 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 58 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 58 // BaseMultipleFieldsDateAndTimeInputType functions | 59 // BaseMultipleFieldsDateAndTimeInputType functions |
| 59 String formatDateTimeFieldsState(const DateTimeFieldsState&) const override; | 60 String formatDateTimeFieldsState(const DateTimeFieldsState&) const override; |
| 60 void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const Dat
eComponents&) const override; | 61 void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, const Dat
eComponents&) const override; |
| 61 bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, b
ool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override; | 62 bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool hasDay, b
ool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const override; |
| 62 #endif | 63 #endif |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 } // namespace blink | 66 } // namespace blink |
| 66 | 67 |
| 67 #endif // WeekInputType_h | 68 #endif // WeekInputType_h |
| OLD | NEW |