Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / web / SpellCheckerClientImpl.h
index 2291487..6cefb2c 100644 (file)
 
 namespace blink {
 
-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.