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

Unified Diff: Source/web/SpellCheckerClientImpl.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « Source/web/SpeechRecognitionClientProxy.h ('k') | Source/web/StorageClientImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « Source/web/SpeechRecognitionClientProxy.h ('k') | Source/web/StorageClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698