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

Unified Diff: chrome/browser/spellchecker/spellcheck_message_filter.cc

Issue 9169082: Asynchronous spellchecking on Win and Linux (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Build fix Created 8 years, 8 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 | « no previous file | chrome/common/spellcheck_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/spellchecker/spellcheck_message_filter.cc
diff --git a/chrome/browser/spellchecker/spellcheck_message_filter.cc b/chrome/browser/spellchecker/spellcheck_message_filter.cc
index 39ee746e6e2c90ad06dc05176f75f08a29cbc4db..ad90df1ac3e6ebdf87031d3a4bf762695cbfa17d 100644
--- a/chrome/browser/spellchecker/spellcheck_message_filter.cc
+++ b/chrome/browser/spellchecker/spellcheck_message_filter.cc
@@ -107,6 +107,8 @@ void SpellCheckMessageFilter::OnCallSpellingService(
Send(new SpellCheckMsg_RespondSpellingService(route_id,
identifier,
document_tag,
+ false,
+ text,
results));
return;
}
@@ -120,6 +122,8 @@ void SpellCheckMessageFilter::OnTextCheckComplete(
Send(new SpellCheckMsg_RespondSpellingService(route_id_,
identifier_,
tag,
+ true,
+ string16(),
results));
client_.reset();
}
« no previous file with comments | « no previous file | chrome/common/spellcheck_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698