diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp')
-rw-r--r-- | Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp b/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp index 405c0e132..6bc419079 100644 --- a/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp +++ b/Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp @@ -29,6 +29,7 @@ #include "TextCheckerState.h" #include "WebTextChecker.h" +#include <WebCore/NotImplemented.h> using namespace WebCore; @@ -137,4 +138,9 @@ void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word) WebTextChecker::shared()->client().ignoreWord(spellDocumentTag, word); } +void TextChecker::requestCheckingOfString(PassRefPtr<TextCheckerCompletion>) +{ + notImplemented(); +} + } // namespace WebKit |