| Index: Source/core/html/forms/ColorInputType.h
|
| diff --git a/Source/core/html/forms/ColorInputType.h b/Source/core/html/forms/ColorInputType.h
|
| index 159f5b33633c23058983cdfd1c3b478f473caef0..49e33f58da7a69fb93c4c3b7abd58c694a9fa998 100644
|
| --- a/Source/core/html/forms/ColorInputType.h
|
| +++ b/Source/core/html/forms/ColorInputType.h
|
| @@ -39,9 +39,11 @@ namespace blink {
|
| class ColorChooser;
|
|
|
| class ColorInputType final : public BaseClickableWithKeyInputType, public ColorChooserClient {
|
| + WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ColorInputType);
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
| virtual ~ColorInputType();
|
| + virtual void trace(Visitor*) override;
|
|
|
| // ColorChooserClient implementation.
|
| virtual void didChooseColor(const Color&) override;
|
| @@ -73,7 +75,7 @@ private:
|
| void endColorChooser();
|
| HTMLElement* shadowColorSwatch() const;
|
|
|
| - OwnPtr<ColorChooser> m_chooser;
|
| + OwnPtrWillBeMember<ColorChooser> m_chooser;
|
| };
|
|
|
| } // namespace blink
|
|
|