Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLUnknownElement.h
index 0cf0e67..9d400bf 100644 (file)
@@ -34,7 +34,7 @@
 
 namespace blink {
 
-class HTMLUnknownElement FINAL : public HTMLElement {
+class HTMLUnknownElement final : public HTMLElement {
     DEFINE_WRAPPERTYPEINFO();
 public:
     static PassRefPtrWillBeRawPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document)
@@ -42,7 +42,7 @@ public:
         return adoptRefWillBeNoop(new HTMLUnknownElement(tagName, document));
     }
 
-    virtual bool isHTMLUnknownElement() const OVERRIDE { return true; }
+    virtual bool isHTMLUnknownElement() const override { return true; }
 
 private:
     HTMLUnknownElement(const QualifiedName& tagName, Document& document)