| 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 d32765ff52c63578fce176a79230c2bb69bce196..c80e6d54f5e6d142d8af8edd6f2cb850d908bab1 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()
|
|
|