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&); |