| Index: third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.h b/third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.h
|
| index 973728872f4d766729701b688d5277acfdf7206b..3910137580e9a0063f0b279878e7b16e49c83586 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/BaseDateAndTimeInputType.h
|
| @@ -40,6 +40,9 @@ class ExceptionState;
|
|
|
| // A super class of date, datetime, datetime-local, month, time, and week types.
|
| class BaseDateAndTimeInputType : public InputType {
|
| +public:
|
| + String visibleValue() const override;
|
| +
|
| protected:
|
| BaseDateAndTimeInputType(HTMLInputElement& element) : InputType(element) { }
|
| Decimal parseToNumber(const String&, const Decimal&) const override;
|
| @@ -52,7 +55,6 @@ protected:
|
| String serialize(const Decimal&) const override;
|
| String serializeWithComponents(const DateComponents&) const;
|
| virtual bool setMillisecondToDateComponents(double, DateComponents*) const = 0;
|
| - String visibleValue() const override;
|
| bool shouldHaveSecondField(const DateComponents&) const;
|
|
|
| private:
|
|
|