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

Unified Diff: Source/core/editing/RemoveFormatCommand.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/RemoveFormatCommand.h
diff --git a/Source/core/editing/RemoveFormatCommand.h b/Source/core/editing/RemoveFormatCommand.h
index e4a40d3b63cd753863c3c0ca1299c8f6243b6999..0807e889e08447a4a89b150785c44262ab90ca41 100644
--- a/Source/core/editing/RemoveFormatCommand.h
+++ b/Source/core/editing/RemoveFormatCommand.h
@@ -40,8 +40,8 @@ public:
private:
explicit RemoveFormatCommand(Document&);
- virtual void doApply() override;
- virtual EditAction editingAction() const override { return EditActionUnspecified; }
+ void doApply() override;
+ EditAction editingAction() const override { return EditActionUnspecified; }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698