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

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

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/DocumentMarker.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 acff6b15d807a53b58e44c2a7bc300d109adacf4..86549b2e7ffb2314076c1f1b894cb17d676dca24 100644
--- a/Source/core/dom/DocumentType.h
+++ b/Source/core/dom/DocumentType.h
@@ -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;
+ KURL baseURI() const override;
+ String nodeName() const override;
+ NodeType nodeType() const override;
+ PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void removedFrom(ContainerNode*) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void removedFrom(ContainerNode*) override;
String m_name;
String m_publicId;
« no previous file with comments | « Source/core/dom/DocumentMarker.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698