| Index: third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp b/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
|
| index 536df8012e64a9992ecc38529ec31d3ac5a09b2e..b00d5a16d677675adff3479a6accf03466e5e119 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/DateTimeLocalInputType.cpp
|
| @@ -49,9 +49,9 @@ static const int dateTimeLocalDefaultStep = 60;
|
| static const int dateTimeLocalDefaultStepBase = 0;
|
| static const int dateTimeLocalStepScaleFactor = 1000;
|
|
|
| -PassRefPtrWillBeRawPtr<InputType> DateTimeLocalInputType::create(HTMLInputElement& element)
|
| +RawPtr<InputType> DateTimeLocalInputType::create(HTMLInputElement& element)
|
| {
|
| - return adoptRefWillBeNoop(new DateTimeLocalInputType(element));
|
| + return new DateTimeLocalInputType(element);
|
| }
|
|
|
| void DateTimeLocalInputType::countUsage()
|
|
|