| Index: third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp b/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
|
| index 37c8503ab6344ed0bc0e21dc43d85544e43c3adb..d0abccfaf185c7bcbb78d85f7fdf8cdf3862c8f4 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
|
| @@ -50,9 +50,9 @@ static const int monthDefaultStep = 1;
|
| static const int monthDefaultStepBase = 0;
|
| static const int monthStepScaleFactor = 1;
|
|
|
| -PassRefPtrWillBeRawPtr<InputType> MonthInputType::create(HTMLInputElement& element)
|
| +RawPtr<InputType> MonthInputType::create(HTMLInputElement& element)
|
| {
|
| - return adoptRefWillBeNoop(new MonthInputType(element));
|
| + return new MonthInputType(element);
|
| }
|
|
|
| void MonthInputType::countUsage()
|
|
|