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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormControlElement.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/HTMLFormControlElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElement.h b/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
index b29083d17129a82c7a6a7e6b3402d58d91d49218..3677256befb1bed7c68365e2926898a9fe731252 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLFormControlElement.h
@@ -39,7 +39,7 @@ enum CheckValidityEventBehavior { CheckValidityDispatchNoEvent, CheckValidityDis
// and form-associated element implementations should use HTMLFormControlElement
// unless there is a special reason.
class CORE_EXPORT HTMLFormControlElement : public LabelableElement, public FormAssociatedElement {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLFormControlElement);
+ USING_GARBAGE_COLLECTED_MIXIN(HTMLFormControlElement);
public:
~HTMLFormControlElement() override;
@@ -96,7 +96,7 @@ public:
void updateVisibleValidationMessage();
void hideVisibleValidationMessage();
- bool checkValidity(WillBeHeapVector<RefPtrWillBeMember<HTMLFormControlElement>>* unhandledInvalidControls = 0, CheckValidityEventBehavior = CheckValidityDispatchInvalidEvent);
+ bool checkValidity(HeapVector<Member<HTMLFormControlElement>>* unhandledInvalidControls = 0, CheckValidityEventBehavior = CheckValidityDispatchInvalidEvent);
bool reportValidity();
// This must be called only after the caller check the element is focusable.
void showValidationMessage();

Powered by Google App Engine
This is Rietveld 408576698