| Index: Source/core/html/DateInputType.cpp
|
| diff --git a/Source/core/html/DateInputType.cpp b/Source/core/html/DateInputType.cpp
|
| index 49779fdd5d9fe80bfe8bb5fbab7158bfc397e166..9efe983dc03d6127e22e0f3f4635efc9ac71c65b 100644
|
| --- a/Source/core/html/DateInputType.cpp
|
| +++ b/Source/core/html/DateInputType.cpp
|
| @@ -53,9 +53,9 @@ inline DateInputType::DateInputType(HTMLInputElement* element)
|
| {
|
| }
|
|
|
| -PassOwnPtr<InputType> DateInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> DateInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new DateInputType(element));
|
| + return adoptRef(new DateInputType(element));
|
| }
|
|
|
| void DateInputType::countUsage()
|
|
|