diff options
Diffstat (limited to 'WebKit/win/WebCoreSupport/WebEditorClient.cpp')
-rw-r--r-- | WebKit/win/WebCoreSupport/WebEditorClient.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/WebKit/win/WebCoreSupport/WebEditorClient.cpp b/WebKit/win/WebCoreSupport/WebEditorClient.cpp index 985742f..e626178 100644 --- a/WebKit/win/WebCoreSupport/WebEditorClient.cpp +++ b/WebKit/win/WebCoreSupport/WebEditorClient.cpp @@ -646,6 +646,13 @@ void WebEditorClient::checkSpellingOfString(const UChar* text, int length, int* ed->checkSpellingOfString(m_webView, text, length, misspellingLocation, misspellingLength); } +String WebEditorClient::getAutoCorrectSuggestionForMisspelledWord(const String& inputWord) +{ + // This method can be implemented using customized algorithms for the particular browser. + // Currently, it computes an empty string. + return String(); +} + void WebEditorClient::checkGrammarOfString(const UChar* text, int length, Vector<GrammarDetail>& details, int* badGrammarLocation, int* badGrammarLength) { details.clear(); |