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

Unified Diff: third_party/WebKit/Source/core/html/forms/InputType.h

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/InputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/InputType.h b/third_party/WebKit/Source/core/html/forms/InputType.h
index b30cfefb0b26f7ae382a3dd6fcaab647a4ab9623..3a0fd54489850dbc65213bfebaf3d5da600a9559 100644
--- a/third_party/WebKit/Source/core/html/forms/InputType.h
+++ b/third_party/WebKit/Source/core/html/forms/InputType.h
@@ -54,11 +54,9 @@ class FormData;
// FIXME: InputType should not inherit InputTypeView. It's conceptually wrong.
class CORE_EXPORT InputType : public InputTypeView {
WTF_MAKE_NONCOPYABLE(InputType);
- USING_FAST_MALLOC_WILL_BE_REMOVED(InputType);
-
public:
- static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&, const AtomicString&);
- static PassRefPtrWillBeRawPtr<InputType> createText(HTMLInputElement&);
+ static RawPtr<InputType> create(HTMLInputElement&, const AtomicString&);
+ static RawPtr<InputType> createText(HTMLInputElement&);
static const AtomicString& normalizeTypeName(const AtomicString&);
~InputType() override;
« no previous file with comments | « third_party/WebKit/Source/core/html/forms/ImageInputType.cpp ('k') | third_party/WebKit/Source/core/html/forms/InputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698