| Index: Source/core/html/FileInputType.cpp
|
| diff --git a/Source/core/html/FileInputType.cpp b/Source/core/html/FileInputType.cpp
|
| index c171a91d475271c01d7efa8cb41fe02b0abd1808..7be998ddd6b59f850924a8ee7a21fe19bf3a9334 100644
|
| --- a/Source/core/html/FileInputType.cpp
|
| +++ b/Source/core/html/FileInputType.cpp
|
| @@ -53,9 +53,9 @@ inline FileInputType::FileInputType(HTMLInputElement* element)
|
| {
|
| }
|
|
|
| -PassOwnPtr<InputType> FileInputType::create(HTMLInputElement* element)
|
| +PassRefPtr<InputType> FileInputType::create(HTMLInputElement* element)
|
| {
|
| - return adoptPtr(new FileInputType(element));
|
| + return adoptRef(new FileInputType(element));
|
| }
|
|
|
| Vector<FileChooserFileInfo> FileInputType::filesFromFormControlState(const FormControlState& state)
|
|
|