| Index: third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| index d7f2754dded320144072b453e7c851e8d18cb33b..2706f7797fb829d960f171401db797851b276f54 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| @@ -147,9 +147,9 @@ bool EmailInputType::isValidEmailAddress(const String& address)
|
| return !matchOffset && matchLength == addressLength;
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<InputType> EmailInputType::create(HTMLInputElement& element)
|
| +RawPtr<InputType> EmailInputType::create(HTMLInputElement& element)
|
| {
|
| - return adoptRefWillBeNoop(new EmailInputType(element));
|
| + return new EmailInputType(element);
|
| }
|
|
|
| void EmailInputType::countUsage()
|
|
|