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

Unified Diff: third_party/WebKit/Source/core/html/forms/MonthInputType.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/MonthInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp b/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
index 37c8503ab6344ed0bc0e21dc43d85544e43c3adb..d0abccfaf185c7bcbb78d85f7fdf8cdf3862c8f4 100644
--- a/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/MonthInputType.cpp
@@ -50,9 +50,9 @@ static const int monthDefaultStep = 1;
static const int monthDefaultStepBase = 0;
static const int monthStepScaleFactor = 1;
-PassRefPtrWillBeRawPtr<InputType> MonthInputType::create(HTMLInputElement& element)
+RawPtr<InputType> MonthInputType::create(HTMLInputElement& element)
{
- return adoptRefWillBeNoop(new MonthInputType(element));
+ return new MonthInputType(element);
}
void MonthInputType::countUsage()

Powered by Google App Engine
This is Rietveld 408576698