| Index: Source/core/html/SearchInputType.cpp
|
| diff --git a/Source/core/html/SearchInputType.cpp b/Source/core/html/SearchInputType.cpp
|
| index 757fa0b2bcd1b9fb30bb466d179c5b35d27726f2..5aab99200035284e25d5591ee7e05f14549bdae1 100644
|
| --- a/Source/core/html/SearchInputType.cpp
|
| +++ b/Source/core/html/SearchInputType.cpp
|
| @@ -52,9 +52,9 @@ inline SearchInputType::SearchInputType(HTMLInputElement* element)
|
| {
|
| }
|
|
|
| -PassOwnPtr<InputType> SearchInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> SearchInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new SearchInputType(element));
|
| + return adoptRef(new SearchInputType(element));
|
| }
|
|
|
| void SearchInputType::countUsage()
|
|
|