| Index: Source/core/html/CheckboxInputType.cpp
|
| diff --git a/Source/core/html/CheckboxInputType.cpp b/Source/core/html/CheckboxInputType.cpp
|
| index a9dbab6a53f2e70da6cf1101da2e2b95379a4696..29ff5757527a15cc83853039edd14abc76c62ae5 100644
|
| --- a/Source/core/html/CheckboxInputType.cpp
|
| +++ b/Source/core/html/CheckboxInputType.cpp
|
| @@ -40,9 +40,9 @@
|
|
|
| namespace WebCore {
|
|
|
| -PassOwnPtr<InputType> CheckboxInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> CheckboxInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new CheckboxInputType(element));
|
| + return adoptRef(new CheckboxInputType(element));
|
| }
|
|
|
| const AtomicString& CheckboxInputType::formControlType() const
|
|
|