Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h |
| diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h b/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h |
| index f6b8beb4d8398f56a69db96dc282671f000859ab..3aea90c17d7b131fb986c9cf7af26d9811ff56c9 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.h |
| @@ -25,9 +25,9 @@ |
| #ifndef HTMLFormControlsCollection_h |
| #define HTMLFormControlsCollection_h |
| -#include "core/html/FormAssociatedElement.h" |
| #include "core/html/HTMLCollection.h" |
| #include "core/html/HTMLElement.h" |
| +#include "core/html/ListedElement.h" |
| #include "core/html/RadioNodeList.h" |
| namespace blink { |
| @@ -61,7 +61,7 @@ class HTMLFormControlsCollection final : public HTMLCollection { |
| void updateIdNameCache() const override; |
| void supportedPropertyNames(Vector<String>& names) override; |
| - const FormAssociatedElement::List& formControlElements() const; |
| + const ListedElement::List& formControlElements() const; |
|
tkent
2016/12/02 13:24:37
Rename this function to listedElements().
|
| const HeapVector<Member<HTMLImageElement>>& formImageElements() const; |
| HTMLElement* virtualItemAfter(Element*) const override; |
| void invalidateCache(Document* oldDocument = 0) const override; |