| 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 1f038c798988ebc23579cfc04fc5c6bb57144424..c832582146cf774005a4167c1af3e4920095dc8f 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()
|
|
|