Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(789)

Unified Diff: Source/core/html/track/vtt/VTTElement.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/track/vtt/VTTCue.h ('k') | Source/core/html/track/vtt/VTTParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/vtt/VTTElement.h
diff --git a/Source/core/html/track/vtt/VTTElement.h b/Source/core/html/track/vtt/VTTElement.h
index 8e58ca6b83ef96c3bbfe84b358751acbc6b9ac43..ebdd4e7841303c994b1477c9b5c69b9dc36ea2f1 100644
--- a/Source/core/html/track/vtt/VTTElement.h
+++ b/Source/core/html/track/vtt/VTTElement.h
@@ -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; }
« no previous file with comments | « Source/core/html/track/vtt/VTTCue.h ('k') | Source/core/html/track/vtt/VTTParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698