Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / dom / EmptyNodeList.h
index 0857148..694679a 100644 (file)
@@ -35,9 +35,9 @@
 #include "core/dom/NodeList.h"
 #include "wtf/RefPtr.h"
 
-namespace WebCore {
+namespace blink {
 
-class EmptyNodeList FINAL : public NodeList {
+class EmptyNodeList final : public NodeList {
 public:
     static PassRefPtrWillBeRawPtr<EmptyNodeList> create(Node& rootNode)
     {
@@ -47,22 +47,22 @@ 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;
 };
 
 DEFINE_TYPE_CASTS(EmptyNodeList, NodeList, nodeList, nodeList->isEmptyNodeList(), nodeList.isEmptyNodeList());
 
-} // namespace WebCore
+} // namespace blink
 
 #endif // EmptyNodeList_h