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

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

Issue 9368052: Removed WebTextCheckingResult legacy API use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Another trial... Created 8 years, 10 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 fd296a8bee6c8647109752f5d377795438d7b1eb..5ade8cc2c6c950d53984786cbc05545647e6f151 100644
--- a/chrome/browser/spellchecker/spellcheck_message_filter.cc
+++ b/chrome/browser/spellchecker/spellcheck_message_filter.cc
@@ -103,7 +103,7 @@ void SpellCheckMessageFilter::OnCallSpellingService(
const string16& text) {
DCHECK(!text.empty());
if (!CallSpellingService(route_id, identifier, document_tag, text)) {
- std::vector<WebKit::WebTextCheckingResult> results;
+ std::vector<SpellCheckResult> results;
Send(new SpellCheckMsg_RespondSpellingService(route_id,
identifier,
document_tag,
@@ -116,7 +116,7 @@ void SpellCheckMessageFilter::OnCallSpellingService(
void SpellCheckMessageFilter::OnTextCheckComplete(
int tag,
- const std::vector<WebKit::WebTextCheckingResult>& results) {
+ const std::vector<SpellCheckResult>& results) {
Send(new SpellCheckMsg_RespondSpellingService(route_id_,
identifier_,
tag,

Powered by Google App Engine
This is Rietveld 408576698