Index: Source/core/dom/EmptyNodeList.h |
diff --git a/Source/core/dom/EmptyNodeList.h b/Source/core/dom/EmptyNodeList.h |
index f11775d0e83237a0f241f681dc981cf23720a4e2..694679a7b4a35c78c54be6fe751b9f52b81e9c5c 100644 |
--- a/Source/core/dom/EmptyNodeList.h |
+++ b/Source/core/dom/EmptyNodeList.h |
@@ -37,7 +37,7 @@ |
namespace blink { |
-class EmptyNodeList FINAL : public NodeList { |
+class EmptyNodeList final : public NodeList { |
public: |
static PassRefPtrWillBeRawPtr<EmptyNodeList> create(Node& rootNode) |
{ |
@@ -47,16 +47,16 @@ public: |
Node& ownerNode() const { return *m_owner; } |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
explicit EmptyNodeList(Node& rootNode) : m_owner(rootNode) { } |
- virtual unsigned length() const OVERRIDE { return 0; } |
- virtual Node* item(unsigned) const OVERRIDE { return 0; } |
+ virtual unsigned length() const override { return 0; } |
+ virtual Node* item(unsigned) const override { return 0; } |
- virtual bool isEmptyNodeList() const OVERRIDE { return true; } |
- virtual Node* virtualOwnerNode() const OVERRIDE; |
+ virtual bool isEmptyNodeList() const override { return true; } |
+ virtual Node* virtualOwnerNode() const override; |
RefPtrWillBeMember<Node> m_owner; |
}; |