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

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

Issue 1218293014: Fix virtual/override/final usage in Source/core/editing/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/InsertListCommand.h
diff --git a/Source/core/editing/InsertListCommand.h b/Source/core/editing/InsertListCommand.h
index dfa6ff99d0306861039063e38c7c4aa2a2cbcca1..8c03016e8b24a691e9b5f840eae7c87e08df0964 100644
--- a/Source/core/editing/InsertListCommand.h
+++ b/Source/core/editing/InsertListCommand.h
@@ -42,15 +42,15 @@ public:
return adoptRefWillBeNoop(new InsertListCommand(document, listType));
}
- virtual bool preservesTypingStyle() const override { return true; }
+ bool preservesTypingStyle() const override { return true; }
DECLARE_VIRTUAL_TRACE();
private:
InsertListCommand(Document&, Type);
- virtual void doApply() override;
- virtual EditAction editingAction() const override { return EditActionInsertList; }
+ void doApply() override;
+ EditAction editingAction() const override { return EditActionInsertList; }
HTMLUListElement* fixOrphanedListChild(Node*);
bool selectionHasListOfType(const VisibleSelection&, const HTMLQualifiedName&);

Powered by Google App Engine
This is Rietveld 408576698