summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp')
-rw-r--r--Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp b/Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp
index 0d6e4db78..957663634 100644
--- a/Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp
+++ b/Source/WebKit/chromium/src/WebTextCheckingCompletionImpl.cpp
@@ -51,7 +51,13 @@ static Vector<TextCheckingResult> toCoreResults(const WebVector<WebTextCheckingR
void WebTextCheckingCompletionImpl::didFinishCheckingText(const WebVector<WebTextCheckingResult>& results)
{
- m_spellChecker->didCheck(m_identifier, toCoreResults(results));
+ m_spellChecker->didCheckSucceeded(m_identifier, toCoreResults(results));
+ delete this;
+}
+
+void WebTextCheckingCompletionImpl::didCancelCheckingText()
+{
+ m_spellChecker->didCheckCanceled(m_identifier);
delete this;
}