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

Unified Diff: Source/core/html/HTMLFieldSetElement.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/HTMLFieldSetElement.h
diff --git a/Source/core/html/HTMLFieldSetElement.h b/Source/core/html/HTMLFieldSetElement.h
index 8d50368b640e473d7edc168acf89fb13c06a3ec5..f7a75ebe9e7875aac13494e3caaa8d4780b35b14 100644
--- a/Source/core/html/HTMLFieldSetElement.h
+++ b/Source/core/html/HTMLFieldSetElement.h
@@ -34,11 +34,12 @@ class HTMLCollection;
class HTMLFieldSetElement FINAL : public HTMLFormControlElement {
public:
static PassRefPtrWillBeRawPtr<HTMLFieldSetElement> create(Document&, HTMLFormElement*);
+ virtual void trace(Visitor*) OVERRIDE;
HTMLLegendElement* legend() const;
PassRefPtr<HTMLCollection> elements();
- const Vector<FormAssociatedElement*>& associatedElements() const;
+ const FormAssociatedElement::List& associatedElements() const;
protected:
virtual void disabledAttributeChanged() OVERRIDE;
@@ -57,7 +58,7 @@ private:
static void invalidateDisabledStateUnder(Element&);
void refreshElementsIfNeeded() const;
- mutable Vector<FormAssociatedElement*> m_associatedElements;
+ mutable FormAssociatedElement::List m_associatedElements;
// When dom tree is modified, we have to refresh the m_associatedElements array.
mutable uint64_t m_documentVersion;
};

Powered by Google App Engine
This is Rietveld 408576698