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

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

Issue 134343002: Update editing classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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
Index: Source/core/editing/EditCommand.h
diff --git a/Source/core/editing/EditCommand.h b/Source/core/editing/EditCommand.h
index e9dc8bea960f0a920727320611ed49d2bb3e3dc1..8e40cebbb8a5a68ee184ff06f1870f2dc9d0f3b1 100644
--- a/Source/core/editing/EditCommand.h
+++ b/Source/core/editing/EditCommand.h
@@ -87,7 +87,7 @@ protected:
explicit SimpleEditCommand(Document& document) : EditCommand(document) { }
private:
- virtual bool isSimpleEditCommand() const OVERRIDE { return true; }
+ virtual bool isSimpleEditCommand() const OVERRIDE FINAL { return true; }
};
DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEditCommand(), command.isSimpleEditCommand());

Powered by Google App Engine
This is Rietveld 408576698