| Index: Source/core/html/ImageInputType.cpp
|
| diff --git a/Source/core/html/ImageInputType.cpp b/Source/core/html/ImageInputType.cpp
|
| index 85b049e6f3e3f77befd9a3a6b1aef7cd401588b3..6711feea89148d1893007b60dfe54e70bb7785cb 100644
|
| --- a/Source/core/html/ImageInputType.cpp
|
| +++ b/Source/core/html/ImageInputType.cpp
|
| @@ -44,9 +44,9 @@ inline ImageInputType::ImageInputType(HTMLInputElement* element)
|
| {
|
| }
|
|
|
| -PassOwnPtr<InputType> ImageInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> ImageInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new ImageInputType(element));
|
| + return adoptRef(new ImageInputType(element));
|
| }
|
|
|
| const AtomicString& ImageInputType::formControlType() const
|
|
|