| Index: third_party/WebKit/Source/core/html/forms/MonthInputType.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/MonthInputType.h b/third_party/WebKit/Source/core/html/forms/MonthInputType.h
|
| index 3b1af1c71cb57bbec9bfe9a6febbd63f0e1afb81..fd97cffcf55c0c28a4a106cf38d13fce509027b4 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/MonthInputType.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/MonthInputType.h
|
| @@ -43,11 +43,14 @@ using BaseMonthInputType = BaseChooserOnlyDateAndTimeInputType;
|
| #endif
|
|
|
| class MonthInputType final : public BaseMonthInputType {
|
| + WILL_BE_USING_DATETIMERCHOOSERCLIENT_GC_MIXIN(MonthInputType);
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
| + DEFINE_BASEDATEANDTIMEINPUTTYPE_VIRTUAL_TRACE(BaseMonthInputType);
|
|
|
| private:
|
| - MonthInputType(HTMLInputElement& element) : BaseMonthInputType(element) { }
|
| + explicit MonthInputType(HTMLInputElement& element) : BaseMonthInputType(element) { }
|
| +
|
| void countUsage() override;
|
| const AtomicString& formControlType() const override;
|
| double valueAsDate() const override;
|
|
|