| 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 9dfcb169f4bda0e9c03f546d23d50c43a13c5eef..b279dc6a9bf28db11a352f08526b76f62dd8fe30 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
|
| @@ -149,9 +149,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()
|
|
|