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

Unified Diff: third_party/WebKit/Source/core/html/forms/WeekInputType.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/WeekInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp b/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
index 8acd1e3cd6287a46ba783cf82345e625d5c4b675..591fd746d6b51e9b06a11b54844acb72ee6699ee 100644
--- a/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/WeekInputType.cpp
@@ -47,9 +47,9 @@ static const int weekDefaultStepBase = -259200000; // The first day of 1970-W01.
static const int weekDefaultStep = 1;
static const int weekStepScaleFactor = 604800000;
-PassRefPtrWillBeRawPtr<InputType> WeekInputType::create(HTMLInputElement& element)
+RawPtr<InputType> WeekInputType::create(HTMLInputElement& element)
{
- return adoptRefWillBeNoop(new WeekInputType(element));
+ return new WeekInputType(element);
}
void WeekInputType::countUsage()
« no previous file with comments | « third_party/WebKit/Source/core/html/forms/WeekInputType.h ('k') | third_party/WebKit/Source/core/html/imports/HTMLImport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698