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

Unified Diff: Source/core/dom/CDATASection.h

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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/dom/Attr.h ('k') | Source/core/dom/CSSSelectorWatch.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/CDATASection.h
diff --git a/Source/core/dom/CDATASection.h b/Source/core/dom/CDATASection.h
index 34fc6b05d2f118435ef05f4c5b4548f50a7965c8..3532e989fab95ed8e19b507e9567fe7c3f3f4f2c 100644
--- a/Source/core/dom/CDATASection.h
+++ b/Source/core/dom/CDATASection.h
@@ -27,7 +27,7 @@
namespace blink {
-class CDATASection FINAL : public Text {
+class CDATASection final : public Text {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<CDATASection> create(Document&, const String&);
@@ -35,9 +35,9 @@ public:
private:
CDATASection(Document&, const String&);
- virtual String nodeName() const OVERRIDE;
- virtual NodeType nodeType() const OVERRIDE;
- virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&) OVERRIDE;
+ virtual String nodeName() const override;
+ virtual NodeType nodeType() const override;
+ virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&) override;
};
DEFINE_NODE_TYPE_CASTS(CDATASection, nodeType() == Node::CDATA_SECTION_NODE);
« no previous file with comments | « Source/core/dom/Attr.h ('k') | Source/core/dom/CSSSelectorWatch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698