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

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

Issue 616603006: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/editing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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
Index: Source/core/editing/InsertTextCommand.h
diff --git a/Source/core/editing/InsertTextCommand.h b/Source/core/editing/InsertTextCommand.h
index d92e6c6a6964e80fc8d2a6340ae568fba5c0cfa4..4eccb7571c3244f683fb791eb7e62703558b8507 100644
--- a/Source/core/editing/InsertTextCommand.h
+++ b/Source/core/editing/InsertTextCommand.h
@@ -30,7 +30,7 @@
namespace blink {
-class InsertTextCommand FINAL : public CompositeEditCommand {
+class InsertTextCommand final : public CompositeEditCommand {
public:
enum RebalanceType {
RebalanceLeadingAndTrailingWhitespaces,
@@ -46,7 +46,7 @@ public:
private:
InsertTextCommand(Document&, const String& text, bool selectInsertedText, RebalanceType);
- virtual void doApply() OVERRIDE;
+ virtual void doApply() override;
Position positionInsideTextNode(const Position&);
Position insertTab(const Position&);
« no previous file with comments | « Source/core/editing/InsertParagraphSeparatorCommand.h ('k') | Source/core/editing/MergeIdenticalElementsCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698