| Index: Source/core/dom/NameNodeList.h
|
| diff --git a/Source/core/dom/NameNodeList.h b/Source/core/dom/NameNodeList.h
|
| index 5f8e0f7502ef2e5e1a2afee1d9a1a4f57e46bf96..62832d103ef0e46fcf5b9b4193957832b34a601d 100644
|
| --- a/Source/core/dom/NameNodeList.h
|
| +++ b/Source/core/dom/NameNodeList.h
|
| @@ -30,7 +30,7 @@
|
| namespace blink {
|
|
|
| // NodeList which lists all Nodes in a Element with a given "name" attribute
|
| -class NameNodeList FINAL : public LiveNodeList {
|
| +class NameNodeList final : public LiveNodeList {
|
| public:
|
| static PassRefPtrWillBeRawPtr<NameNodeList> create(ContainerNode& rootNode, CollectionType type, const AtomicString& name)
|
| {
|
| @@ -43,7 +43,7 @@ public:
|
| private:
|
| NameNodeList(ContainerNode& rootNode, const AtomicString& name);
|
|
|
| - virtual bool elementMatches(const Element&) const OVERRIDE;
|
| + virtual bool elementMatches(const Element&) const override;
|
|
|
| AtomicString m_name;
|
| };
|
|
|