Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: third_party/WebKit/Source/core/html/forms/FileInputTypeTest.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698