Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / NameNodeList.h
index 5f8e0f7..62832d1 100644 (file)
@@ -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;
 };