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

Unified Diff: Source/core/editing/InsertListCommand.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
« no previous file with comments | « Source/core/editing/InsertLineBreakCommand.h ('k') | Source/core/editing/InsertNodeBeforeCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/InsertListCommand.h
diff --git a/Source/core/editing/InsertListCommand.h b/Source/core/editing/InsertListCommand.h
index f9af962d94a3536d217a04724ccbe7cc3904b7e6..a482fc02d6acdca3e391a3a6b0e9cc5782731adf 100644
--- a/Source/core/editing/InsertListCommand.h
+++ b/Source/core/editing/InsertListCommand.h
@@ -33,7 +33,7 @@ namespace blink {
class HTMLElement;
class HTMLUListElement;
-class InsertListCommand FINAL : public CompositeEditCommand {
+class InsertListCommand final : public CompositeEditCommand {
public:
enum Type { OrderedList, UnorderedList };
@@ -42,15 +42,15 @@ public:
return adoptRefWillBeNoop(new InsertListCommand(document, listType));
}
- virtual bool preservesTypingStyle() const OVERRIDE { return true; }
+ virtual bool preservesTypingStyle() const override { return true; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
InsertListCommand(Document&, Type);
- virtual void doApply() OVERRIDE;
- virtual EditAction editingAction() const OVERRIDE { return EditActionInsertList; }
+ virtual void doApply() override;
+ virtual EditAction editingAction() const override { return EditActionInsertList; }
HTMLUListElement* fixOrphanedListChild(Node*);
bool selectionHasListOfType(const VisibleSelection&, const HTMLQualifiedName&);
« no previous file with comments | « Source/core/editing/InsertLineBreakCommand.h ('k') | Source/core/editing/InsertNodeBeforeCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698