X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fdom%2FComment.h;h=97c56c9572a5bd331f1edfd0afc029679ae5cba9;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=c9f13141952e46dddc4de3128dc1d0212fd78c76;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/dom/Comment.h b/src/third_party/WebKit/Source/core/dom/Comment.h index c9f1314..97c56c9 100644 --- a/src/third_party/WebKit/Source/core/dom/Comment.h +++ b/src/third_party/WebKit/Source/core/dom/Comment.h @@ -27,7 +27,7 @@ namespace blink { -class Comment FINAL : public CharacterData { +class Comment final : public CharacterData { DEFINE_WRAPPERTYPEINFO(); public: static PassRefPtrWillBeRawPtr create(Document&, const String&); @@ -35,9 +35,9 @@ public: private: Comment(Document&, const String&); - virtual String nodeName() const OVERRIDE; - virtual NodeType nodeType() const OVERRIDE; - virtual PassRefPtrWillBeRawPtr cloneNode(bool deep = true) OVERRIDE; + virtual String nodeName() const override; + virtual NodeType nodeType() const override; + virtual PassRefPtrWillBeRawPtr cloneNode(bool deep = true) override; }; DEFINE_NODE_TYPE_CASTS(Comment, nodeType() == Node::COMMENT_NODE);