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

Unified Diff: third_party/WebKit/Source/core/html/forms/HiddenInputType.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/HiddenInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp b/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
index b81b5cd1073901d2e76c16a776ac19e64489086b..f56f766303d9345af25679403e9a06681261332a 100644
--- a/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
@@ -42,9 +42,9 @@ namespace blink {
using namespace HTMLNames;
-PassRefPtrWillBeRawPtr<InputType> HiddenInputType::create(HTMLInputElement& element)
+RawPtr<InputType> HiddenInputType::create(HTMLInputElement& element)
{
- return adoptRefWillBeNoop(new HiddenInputType(element));
+ return new HiddenInputType(element);
}
const AtomicString& HiddenInputType::formControlType() const

Powered by Google App Engine
This is Rietveld 408576698