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

Unified Diff: third_party/WebKit/Source/core/html/FormAssociatedElement.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/FormAssociatedElement.h
diff --git a/third_party/WebKit/Source/core/html/FormAssociatedElement.h b/third_party/WebKit/Source/core/html/FormAssociatedElement.h
index 5e95de75f5f4f8543a81e23cd4cf7ead6d31d7ef..32c6dc3b1d6adeadca5704ff1d7777d60435a8df 100644
--- a/third_party/WebKit/Source/core/html/FormAssociatedElement.h
+++ b/third_party/WebKit/Source/core/html/FormAssociatedElement.h
@@ -40,7 +40,7 @@ class HTMLFormElement;
class Node;
class ValidityState;
-class CORE_EXPORT FormAssociatedElement : public WillBeGarbageCollectedMixin {
+class CORE_EXPORT FormAssociatedElement : public GarbageCollectedMixin {
public:
virtual ~FormAssociatedElement();
@@ -92,7 +92,7 @@ public:
void formAttributeTargetChanged();
- typedef WillBeHeapVector<RawPtrWillBeMember<FormAssociatedElement>> List;
+ typedef HeapVector<Member<FormAssociatedElement>> List;
DECLARE_VIRTUAL_TRACE();
@@ -123,12 +123,12 @@ private:
virtual void derefFormAssociatedElement() = 0;
#endif
- void setFormAttributeTargetObserver(PassOwnPtrWillBeRawPtr<FormAttributeTargetObserver>);
+ void setFormAttributeTargetObserver(RawPtr<FormAttributeTargetObserver>);
void resetFormAttributeTargetObserver();
- OwnPtrWillBeMember<FormAttributeTargetObserver> m_formAttributeTargetObserver;
- WeakPtrWillBeMember<HTMLFormElement> m_form;
- OwnPtrWillBeMember<ValidityState> m_validityState;
+ Member<FormAttributeTargetObserver> m_formAttributeTargetObserver;
+ Member<HTMLFormElement> m_form;
+ Member<ValidityState> m_validityState;
String m_customValidationMessage;
// Non-Oilpan: Even if m_formWasSetByParser is true, m_form can be null
// because parentNode is not a strong reference and |this| and m_form don't

Powered by Google App Engine
This is Rietveld 408576698