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

Unified Diff: Source/core/html/FormAssociatedElement.h

Issue 270823004: Oilpan: Prepare to move FormAssociatedElement to Oilpan heap, part 2. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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: Source/core/html/FormAssociatedElement.h
diff --git a/Source/core/html/FormAssociatedElement.h b/Source/core/html/FormAssociatedElement.h
index ecc9f625ddd3683b31aeb339e651491b00e3ec47..e41483a55c08d1020fac97b69eb98aaf42cca583 100644
--- a/Source/core/html/FormAssociatedElement.h
+++ b/Source/core/html/FormAssociatedElement.h
@@ -90,6 +90,8 @@ public:
void formAttributeTargetChanged();
+ typedef WillBeHeapVector<RawPtrWillBeMember<FormAssociatedElement> > List;
+
protected:
FormAssociatedElement();
@@ -118,10 +120,10 @@ private:
virtual void derefFormAssociatedElement() = 0;
#endif
- void setFormAttributeTargetObserver(PassOwnPtr<FormAttributeTargetObserver>);
+ void setFormAttributeTargetObserver(PassOwnPtrWillBeRawPtr<FormAttributeTargetObserver>);
void resetFormAttributeTargetObserver();
- OwnPtr<FormAttributeTargetObserver> m_formAttributeTargetObserver;
+ OwnPtrWillBeMember<FormAttributeTargetObserver> m_formAttributeTargetObserver;
#if ENABLE(OILPAN)
Member<HTMLFormElement> m_form;
#else
« no previous file with comments | « no previous file | Source/core/html/FormAssociatedElement.cpp » ('j') | Source/core/html/FormAssociatedElement.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698