| 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;
|
| };
|
|
|