Index: Source/web/SpellCheckerClientImpl.h |
diff --git a/Source/web/SpellCheckerClientImpl.h b/Source/web/SpellCheckerClientImpl.h |
index 22914879db13193fd895e3b1ae1a09f3e6554f2f..6dbbc4d59ba7b1106d32c4ecfe6b4c44be06cfb6 100644 |
--- a/Source/web/SpellCheckerClientImpl.h |
+++ b/Source/web/SpellCheckerClientImpl.h |
@@ -41,26 +41,26 @@ class LocalFrame; |
class HTMLInputElement; |
class WebViewImpl; |
-class SpellCheckerClientImpl FINAL : public SpellCheckerClient, public TextCheckerClient { |
+class SpellCheckerClientImpl final : public SpellCheckerClient, public TextCheckerClient { |
public: |
explicit SpellCheckerClientImpl(WebViewImpl*); |
virtual ~SpellCheckerClientImpl(); |
- virtual bool isContinuousSpellCheckingEnabled() OVERRIDE; |
- virtual void toggleContinuousSpellChecking() OVERRIDE; |
- virtual bool isGrammarCheckingEnabled() OVERRIDE; |
- virtual bool shouldEraseMarkersAfterChangeSelection(TextCheckingType) const OVERRIDE; |
- virtual void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) OVERRIDE; |
+ virtual bool isContinuousSpellCheckingEnabled() override; |
+ virtual void toggleContinuousSpellChecking() override; |
+ virtual bool isGrammarCheckingEnabled() override; |
+ virtual bool shouldEraseMarkersAfterChangeSelection(TextCheckingType) const override; |
+ virtual void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) override; |
virtual void checkGrammarOfString(const String&, WTF::Vector<GrammarDetail>&, |
- int* badGrammarLocation, int* badGrammarLength) OVERRIDE; |
- virtual WTF::String getAutoCorrectSuggestionForMisspelledWord(const WTF::String&) OVERRIDE; |
- virtual void updateSpellingUIWithMisspelledWord(const WTF::String&) OVERRIDE; |
- virtual void showSpellingUI(bool show) OVERRIDE; |
- virtual bool spellingUIIsShowing() OVERRIDE; |
- virtual void requestCheckingOfString(PassRefPtrWillBeRawPtr<TextCheckingRequest>) OVERRIDE; |
+ int* badGrammarLocation, int* badGrammarLength) override; |
+ virtual WTF::String getAutoCorrectSuggestionForMisspelledWord(const WTF::String&) override; |
+ virtual void updateSpellingUIWithMisspelledWord(const WTF::String&) override; |
+ virtual void showSpellingUI(bool show) override; |
+ virtual bool spellingUIIsShowing() override; |
+ virtual void requestCheckingOfString(PassRefPtrWillBeRawPtr<TextCheckingRequest>) override; |
- virtual TextCheckerClient& textChecker() OVERRIDE { return *this; } |
+ virtual TextCheckerClient& textChecker() override { return *this; } |
private: |
// Returns whether or not the focused control needs spell-checking. |