| Index: Source/core/html/TimeInputType.cpp
|
| diff --git a/Source/core/html/TimeInputType.cpp b/Source/core/html/TimeInputType.cpp
|
| index 6a5fdf6df828ebeed8caf6e07c1856d843e217fa..767c67acb3e0a74fd8921a1f5df0dec96f910fef 100644
|
| --- a/Source/core/html/TimeInputType.cpp
|
| +++ b/Source/core/html/TimeInputType.cpp
|
| @@ -59,9 +59,9 @@ TimeInputType::TimeInputType(HTMLInputElement* element)
|
| {
|
| }
|
|
|
| -PassOwnPtr<InputType> TimeInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> TimeInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new TimeInputType(element));
|
| + return adoptRef(new TimeInputType(element));
|
| }
|
|
|
| void TimeInputType::countUsage()
|
|
|