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

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, 10 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 268420cb4c8d7c2f3ca14e698a2297d173242963..b34608e2fc1fefb8da475d585113f1693c7cca66 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;

Powered by Google App Engine
This is Rietveld 408576698