| Index: Source/core/html/HiddenInputType.cpp
|
| diff --git a/Source/core/html/HiddenInputType.cpp b/Source/core/html/HiddenInputType.cpp
|
| index 056f37905c4a27ae78fec8a4352158edd048323f..d4b0f9eda7d684c4dc3533c49b1fa32fa0c9466c 100644
|
| --- a/Source/core/html/HiddenInputType.cpp
|
| +++ b/Source/core/html/HiddenInputType.cpp
|
| @@ -43,9 +43,9 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -PassOwnPtr<InputType> HiddenInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> HiddenInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new HiddenInputType(element));
|
| + return adoptRef(new HiddenInputType(element));
|
| }
|
|
|
| const AtomicString& HiddenInputType::formControlType() const
|
|
|