Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / track / vtt / VTTElement.h
index 8e58ca6..ebdd4e7 100644 (file)
@@ -42,13 +42,13 @@ enum VTTNodeType {
     VTTNodeTypeVoice
 };
 
-class VTTElement FINAL : public Element {
+class VTTElement final : public Element {
 public:
     static PassRefPtrWillBeRawPtr<VTTElement> create(const VTTNodeType, Document*);
     static PassRefPtrWillBeRawPtr<VTTElement> create(const QualifiedName&, Document*);
     PassRefPtrWillBeRawPtr<HTMLElement> createEquivalentHTMLElement(Document&);
 
-    virtual PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() OVERRIDE;
+    virtual PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
 
     void setVTTNodeType(VTTNodeType type) { m_webVTTNodeType = static_cast<unsigned>(type); }
     VTTNodeType webVTTNodeType() const { return static_cast<VTTNodeType>(m_webVTTNodeType); }
@@ -56,7 +56,7 @@ public:
     bool isPastNode() const { return m_isPastNode; }
     void setIsPastNode(bool value) { m_isPastNode = value; }
 
-    virtual bool isVTTElement() const OVERRIDE { return true; }
+    virtual bool isVTTElement() const override { return true; }
     AtomicString language() const { return m_language; }
     void setLanguage(AtomicString value) { m_language = value; }