| Index: third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp b/third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp
|
| index f0b540eba77a56163cfad7e4a4e9a1b25599da38..f558d00c9a1ee7f106b41b547dce72c16b8cac6f 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp
|
| @@ -46,10 +46,10 @@ TEST(FileInputTypeTest, createFileList)
|
|
|
| TEST(FileInputTypeTest, ignoreDroppedNonNativeFiles)
|
| {
|
| - const RefPtrWillBeRawPtr<Document> document = Document::create();
|
| - const RefPtrWillBeRawPtr<HTMLInputElement> input =
|
| + const RawPtr<Document> document = Document::create();
|
| + const RawPtr<HTMLInputElement> input =
|
| HTMLInputElement::create(*document, nullptr, false);
|
| - const RefPtrWillBeRawPtr<InputType> fileInput = FileInputType::create(*input);
|
| + const RawPtr<InputType> fileInput = FileInputType::create(*input);
|
|
|
| DataObject* nativeFileRawDragData = DataObject::create();
|
| const DragData nativeFileDragData(nativeFileRawDragData, IntPoint(), IntPoint(), DragOperationCopy);
|
|
|