Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| index b47d303ec11c531600d748a757fa214a5fe5f824..a042b4b15509ce674a3dc8c2cc9330acaabbccea 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.h |
| @@ -41,7 +41,7 @@ class CORE_EXPORT HTMLFieldSetElement final : public HTMLFormControlElement { |
| HTMLFormControlsCollection* elements(); |
| - const FormAssociatedElement::List& associatedElements() const; |
| + const ListedElement::List& associatedElements() const; |
|
tkent
2016/12/02 13:24:37
Rename this function to listedElements().
|
| protected: |
| void disabledAttributeChanged() override; |
| @@ -65,7 +65,7 @@ class CORE_EXPORT HTMLFieldSetElement final : public HTMLFormControlElement { |
| static void invalidateDisabledStateUnder(Element&); |
| void refreshElementsIfNeeded() const; |
| - mutable FormAssociatedElement::List m_associatedElements; |
| + mutable ListedElement::List m_associatedElements; |
|
tkent
2016/12/02 13:24:37
Rename this data member to m_listedElements.
|
| // When dom tree is modified, we have to refresh the m_associatedElements |
| // array. |
| mutable uint64_t m_documentVersion; |