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

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

Issue 11635063: [Spellcheck] Removing the "no more suggestions from Google" line when using the spelling service (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: responding to comments (browsertest, prebind) Created 7 years, 12 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
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 6868bc0b6c70a9bf1935c8a16c5c0ee56cc11dd3..88a06d029fb10e1c01b418591e447f1af29f77e3 100644
--- a/chrome/browser/spellchecker/spellcheck_message_filter.cc
+++ b/chrome/browser/spellchecker/spellcheck_message_filter.cc
@@ -145,8 +145,8 @@ bool SpellCheckMessageFilter::CallSpellingService(
return false;
client_.reset(new SpellingServiceClient);
return client_->RequestTextCheck(
- profile, document_tag, SpellingServiceClient::SPELLCHECK, text,
- base::Bind(&SpellCheckMessageFilter::OnTextCheckComplete,
- base::Unretained(this)));
+ profile, SpellingServiceClient::SPELLCHECK, text,
+ base::Bind(&SpellCheckMessageFilter::OnTextCheckComplete,
+ base::Unretained(this), document_tag));
}
#endif
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_message_filter.h ('k') | chrome/browser/spellchecker/spelling_service_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698