| Index: Source/core/html/MonthInputType.cpp
|
| diff --git a/Source/core/html/MonthInputType.cpp b/Source/core/html/MonthInputType.cpp
|
| index b7fd518add0ba42bd32bf3b132583174fc6a9183..620e5c84f04db0c76b8c3e66c4acae4842baa3f8 100644
|
| --- a/Source/core/html/MonthInputType.cpp
|
| +++ b/Source/core/html/MonthInputType.cpp
|
| @@ -54,9 +54,9 @@ static const int monthDefaultStep = 1;
|
| static const int monthDefaultStepBase = 0;
|
| static const int monthStepScaleFactor = 1;
|
|
|
| -PassOwnPtr<InputType> MonthInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> MonthInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new MonthInputType(element));
|
| + return adoptRef(new MonthInputType(element));
|
| }
|
|
|
| void MonthInputType::countUsage()
|
|
|