| Index: Source/core/html/TextInputType.cpp
|
| diff --git a/Source/core/html/TextInputType.cpp b/Source/core/html/TextInputType.cpp
|
| index de0ebdff493b0e64f463e3288a1dc9f4f8189a99..5ae6784179aade6de61be01dd54556f0ee134466 100644
|
| --- a/Source/core/html/TextInputType.cpp
|
| +++ b/Source/core/html/TextInputType.cpp
|
| @@ -39,9 +39,9 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -PassOwnPtr<InputType> TextInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> TextInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new TextInputType(element));
|
| + return adoptRef(new TextInputType(element));
|
| }
|
|
|
| void TextInputType::countUsage()
|
|
|