| Index: third_party/WebKit/Source/core/dom/ContainerNode.h
|
| diff --git a/third_party/WebKit/Source/core/dom/ContainerNode.h b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| index f398e46996df42ada17dede4c6c8f0fd4b5b9cf6..7d2871238eb3bdf72d500913569707c93822acd8 100644
|
| --- a/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| +++ b/third_party/WebKit/Source/core/dom/ContainerNode.h
|
| @@ -42,7 +42,6 @@ class HTMLCollection;
|
| class NameNodeList;
|
| using StaticElementList = StaticNodeTypeList<Element>;
|
| class RadioNodeList;
|
| -class TagCollection;
|
|
|
| enum DynamicRestyleFlags {
|
| kChildrenOrSiblingsAffectedByFocus = 1 << 0,
|
| @@ -120,9 +119,9 @@ class CORE_EXPORT ContainerNode : public Node {
|
| Node* AppendChild(Node* new_child, ExceptionState& = ASSERT_NO_EXCEPTION);
|
|
|
| Element* getElementById(const AtomicString& id) const;
|
| - TagCollection* getElementsByTagName(const AtomicString&);
|
| - TagCollection* getElementsByTagNameNS(const AtomicString& namespace_uri,
|
| - const AtomicString& local_name);
|
| + HTMLCollection* getElementsByTagName(const AtomicString&);
|
| + HTMLCollection* getElementsByTagNameNS(const AtomicString& namespace_uri,
|
| + const AtomicString& local_name);
|
| NameNodeList* getElementsByName(const AtomicString& element_name);
|
| ClassCollection* getElementsByClassName(const AtomicString& class_names);
|
| RadioNodeList* GetRadioNodeList(const AtomicString&,
|
|
|