| Index: third_party/WebKit/Source/core/html/forms/DateInputType.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/DateInputType.h b/third_party/WebKit/Source/core/html/forms/DateInputType.h
|
| index 38002ce531509436d7675bec9462eda2f673991d..b85f5a7eb2ee3d3352659ebb8b13a0f9309a4017 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/DateInputType.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/DateInputType.h
|
| @@ -43,11 +43,14 @@ using BaseDateInputType = BaseChooserOnlyDateAndTimeInputType;
|
| #endif
|
|
|
| class DateInputType final : public BaseDateInputType {
|
| + WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DateInputType);
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
| + DEFINE_INLINE_VIRTUAL_TRACE() { BaseDateInputType::trace(visitor); }
|
|
|
| private:
|
| - DateInputType(HTMLInputElement&);
|
| + explicit DateInputType(HTMLInputElement&);
|
| +
|
| void countUsage() override;
|
| const AtomicString& formControlType() const override;
|
| StepRange createStepRange(AnyStepHandling) const override;
|
|
|