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

Unified Diff: Source/core/editing/CompositeEditCommand.h

Issue 135833002: Add missing virtual keyword for methods with OVERRIDE (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/SelectorQuery.cpp ('k') | Source/core/editing/CreateLinkCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/CompositeEditCommand.h
diff --git a/Source/core/editing/CompositeEditCommand.h b/Source/core/editing/CompositeEditCommand.h
index 175b42670a3290545c0df07e5c238b9d27d7c88f..9c16f1480d733d26d1b15d87831b7d6da42055aa 100644
--- a/Source/core/editing/CompositeEditCommand.h
+++ b/Source/core/editing/CompositeEditCommand.h
@@ -168,7 +168,7 @@ protected:
Vector<RefPtr<EditCommand> > m_commands;
private:
- bool isCompositeEditCommand() const OVERRIDE FINAL { return true; }
+ virtual bool isCompositeEditCommand() const OVERRIDE FINAL { return true; }
RefPtr<EditCommandComposition> m_composition;
};
« no previous file with comments | « Source/core/dom/SelectorQuery.cpp ('k') | Source/core/editing/CreateLinkCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698