| Index: third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp b/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
|
| index 8acd1e3cd6287a46ba783cf82345e625d5c4b675..591fd746d6b51e9b06a11b54844acb72ee6699ee 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
|
| @@ -47,9 +47,9 @@ static const int weekDefaultStepBase = -259200000; // The first day of 1970-W01.
|
| static const int weekDefaultStep = 1;
|
| static const int weekStepScaleFactor = 604800000;
|
|
|
| -PassRefPtrWillBeRawPtr<InputType> WeekInputType::create(HTMLInputElement& element)
|
| +RawPtr<InputType> WeekInputType::create(HTMLInputElement& element)
|
| {
|
| - return adoptRefWillBeNoop(new WeekInputType(element));
|
| + return new WeekInputType(element);
|
| }
|
|
|
| void WeekInputType::countUsage()
|
|
|