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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.h

Issue 2546063002: Rename FormAssociatedElement to ListedElement (Closed)
Patch Set: Rename FormAssociatedElement to ListedElement Created 4 years 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/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;

Powered by Google App Engine
This is Rietveld 408576698