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

Unified Diff: Source/core/dom/DocumentMarker.cpp

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/DocumentFragment.h ('k') | Source/core/dom/DocumentType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentMarker.cpp
diff --git a/Source/core/dom/DocumentMarker.cpp b/Source/core/dom/DocumentMarker.cpp
index bb15c5cef912bc43d634228f31faf93a9648314e..b832cb6f9cd3e597f49d6fc469e43626ae6a805d 100644
--- a/Source/core/dom/DocumentMarker.cpp
+++ b/Source/core/dom/DocumentMarker.cpp
@@ -42,7 +42,7 @@ public:
static PassRefPtrWillBeRawPtr<DocumentMarkerDescription> create(const String&);
const String& description() const { return m_description; }
- virtual bool isDescription() const override { return true; }
+ bool isDescription() const override { return true; }
private:
explicit DocumentMarkerDescription(const String& description)
@@ -71,7 +71,7 @@ public:
static PassRefPtrWillBeRawPtr<DocumentMarkerTextMatch> instanceFor(bool);
bool activeMatch() const { return m_match; }
- virtual bool isTextMatch() const override { return true; }
+ bool isTextMatch() const override { return true; }
private:
explicit DocumentMarkerTextMatch(bool match)
« no previous file with comments | « Source/core/dom/DocumentFragment.h ('k') | Source/core/dom/DocumentType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698