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

Unified Diff: Source/core/dom/DocumentType.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/DocumentTest.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentType.h
diff --git a/Source/core/dom/DocumentType.h b/Source/core/dom/DocumentType.h
index 0c1b7557d512919b7580d7edcdca47d39bfb9a02..acff6b15d807a53b58e44c2a7bc300d109adacf4 100644
--- a/Source/core/dom/DocumentType.h
+++ b/Source/core/dom/DocumentType.h
@@ -28,7 +28,7 @@
namespace blink {
-class DocumentType FINAL : public Node {
+class DocumentType final : public Node {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId)
@@ -43,13 +43,13 @@ public:
private:
DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
- virtual KURL baseURI() const OVERRIDE;
- virtual String nodeName() const OVERRIDE;
- virtual NodeType nodeType() const OVERRIDE;
- virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) OVERRIDE;
+ virtual KURL baseURI() const override;
+ virtual String nodeName() const override;
+ virtual NodeType nodeType() const override;
+ virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
- virtual void removedFrom(ContainerNode*) OVERRIDE;
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ virtual void removedFrom(ContainerNode*) override;
String m_name;
String m_publicId;
« no previous file with comments | « Source/core/dom/DocumentTest.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698