| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef DateInputType_h | 31 #ifndef DateInputType_h |
| 32 #define DateInputType_h | 32 #define DateInputType_h |
| 33 | 33 |
| 34 #include "core/html/forms/BaseChooserOnlyDateAndTimeInputType.h" | 34 #include "core/html/forms/BaseChooserOnlyDateAndTimeInputType.h" |
| 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 class PickerIndicatorElement; | |
| 40 | |
| 41 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) | 39 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) |
| 42 typedef BaseMultipleFieldsDateAndTimeInputType BaseDateInputType; | 40 typedef BaseMultipleFieldsDateAndTimeInputType BaseDateInputType; |
| 43 #else | 41 #else |
| 44 typedef BaseChooserOnlyDateAndTimeInputType BaseDateInputType; | 42 typedef BaseChooserOnlyDateAndTimeInputType BaseDateInputType; |
| 45 #endif | 43 #endif |
| 46 | 44 |
| 47 class DateInputType FINAL : public BaseDateInputType { | 45 class DateInputType FINAL : public BaseDateInputType { |
| 48 public: | 46 public: |
| 49 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); | 47 static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&); |
| 50 | 48 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 61 // BaseMultipleFieldsDateAndTimeInputType functions | 59 // BaseMultipleFieldsDateAndTimeInputType functions |
| 62 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O
VERRIDE; | 60 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O
VERRIDE; |
| 63 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c
onst DateComponents&) const OVERRIDE; | 61 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c
onst DateComponents&) const OVERRIDE; |
| 64 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h
asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID
E; | 62 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h
asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID
E; |
| 65 #endif | 63 #endif |
| 66 }; | 64 }; |
| 67 | 65 |
| 68 } // namespace blink | 66 } // namespace blink |
| 69 | 67 |
| 70 #endif // DateInputType_h | 68 #endif // DateInputType_h |
| OLD | NEW |