| Index: third_party/WebKit/Source/core/html/forms/InputType.h
|
| diff --git a/third_party/WebKit/Source/core/html/forms/InputType.h b/third_party/WebKit/Source/core/html/forms/InputType.h
|
| index b30cfefb0b26f7ae382a3dd6fcaab647a4ab9623..3a0fd54489850dbc65213bfebaf3d5da600a9559 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/InputType.h
|
| +++ b/third_party/WebKit/Source/core/html/forms/InputType.h
|
| @@ -54,11 +54,9 @@ class FormData;
|
| // FIXME: InputType should not inherit InputTypeView. It's conceptually wrong.
|
| class CORE_EXPORT InputType : public InputTypeView {
|
| WTF_MAKE_NONCOPYABLE(InputType);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(InputType);
|
| -
|
| public:
|
| - static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&, const AtomicString&);
|
| - static PassRefPtrWillBeRawPtr<InputType> createText(HTMLInputElement&);
|
| + static RawPtr<InputType> create(HTMLInputElement&, const AtomicString&);
|
| + static RawPtr<InputType> createText(HTMLInputElement&);
|
| static const AtomicString& normalizeTypeName(const AtomicString&);
|
| ~InputType() override;
|
|
|
|
|