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

Unified Diff: Source/core/editing/TypingCommand.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/TypingCommand.h
diff --git a/Source/core/editing/TypingCommand.h b/Source/core/editing/TypingCommand.h
index 216a5871d11f437f18ebbe09cdecbc76c96c29ab..4b20532d5da770f70e5786b5fd162c770ddd5772 100644
--- a/Source/core/editing/TypingCommand.h
+++ b/Source/core/editing/TypingCommand.h
@@ -96,12 +96,12 @@ private:
static PassRefPtrWillBeRawPtr<TypingCommand> lastTypingCommandIfStillOpenForTyping(LocalFrame*);
- virtual void doApply() override;
- virtual EditAction editingAction() const override;
- virtual bool isTypingCommand() const override;
- virtual bool preservesTypingStyle() const override { return m_preservesTypingStyle; }
- virtual void setShouldRetainAutocorrectionIndicator(bool retain) override { m_shouldRetainAutocorrectionIndicator = retain; }
- virtual bool shouldStopCaretBlinking() const override { return true; }
+ void doApply() override;
+ EditAction editingAction() const override;
+ bool isTypingCommand() const override;
+ bool preservesTypingStyle() const override { return m_preservesTypingStyle; }
+ void setShouldRetainAutocorrectionIndicator(bool retain) override { m_shouldRetainAutocorrectionIndicator = retain; }
+ bool shouldStopCaretBlinking() const override { return true; }
void setShouldPreventSpellChecking(bool prevent) { m_shouldPreventSpellChecking = prevent; }
static void updateSelectionIfDifferentFromCurrentSelection(TypingCommand*, LocalFrame*);

Powered by Google App Engine
This is Rietveld 408576698