| Index: third_party/WebKit/Source/core/html/forms/WeekInputType.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/WeekInputType.h b/third_party/WebKit/Source/core/html/forms/WeekInputType.h
|
| index 32511ac1e8e065e285f08a748b9558cbc9ffe829..79f7dcef619e3373c637a4c2202e5dc8b767733f 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/WeekInputType.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/WeekInputType.h
|
| @@ -43,11 +43,14 @@ using BaseWeekInputType = BaseChooserOnlyDateAndTimeInputType;
|
| #endif
|
|
|
| class WeekInputType final : public BaseWeekInputType {
|
| + WILL_BE_USING_DATETIMERCHOOSERCLIENT_GC_MIXIN(WeekInputType);
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
| + DEFINE_BASEDATEANDTIMEINPUTTYPE_VIRTUAL_TRACE(BaseWeekInputType);
|
|
|
| private:
|
| - WeekInputType(HTMLInputElement& element) : BaseWeekInputType(element) { }
|
| + explicit WeekInputType(HTMLInputElement& element) : BaseWeekInputType(element) { }
|
| +
|
| void countUsage() override;
|
| const AtomicString& formControlType() const override;
|
| StepRange createStepRange(AnyStepHandling) const override;
|
|
|