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

Unified Diff: chrome/browser/tab_contents/spelling_menu_observer.cc

Issue 23868013: Refactor dependency on Profile to BrowserContext in spell check. (Closed) Base URL: http://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 3 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/tab_contents/spelling_menu_observer.cc
===================================================================
--- chrome/browser/tab_contents/spelling_menu_observer.cc (revision 223601)
+++ chrome/browser/tab_contents/spelling_menu_observer.cc (working copy)
@@ -155,7 +155,7 @@
// |spellcheck_service| can be null when the suggested word is
// provided by Web SpellCheck API.
SpellcheckService* spellcheck_service =
- SpellcheckServiceFactory::GetForProfile(profile);
+ SpellcheckServiceFactory::GetForContext(profile);
if (spellcheck_service && spellcheck_service->GetMetrics())
spellcheck_service->GetMetrics()->RecordSuggestionStats(1);
}
@@ -260,7 +260,7 @@
Profile* profile = proxy_->GetProfile();
if (profile) {
SpellcheckService* spellcheck =
- SpellcheckServiceFactory::GetForProfile(profile);
+ SpellcheckServiceFactory::GetForContext(profile);
if (spellcheck) {
if (spellcheck->GetMetrics())
spellcheck->GetMetrics()->RecordReplacedWordStats(1);
@@ -286,7 +286,7 @@
Profile* profile = proxy_->GetProfile();
if (profile) {
SpellcheckService* spellcheck =
- SpellcheckServiceFactory::GetForProfile(profile);
+ SpellcheckServiceFactory::GetForContext(profile);
if (spellcheck) {
spellcheck->GetCustomDictionary()->AddWord(UTF16ToUTF8(
misspelled_word_));
@@ -359,7 +359,7 @@
if (!profile)
return;
SpellcheckService* spellcheck =
- SpellcheckServiceFactory::GetForProfile(profile);
+ SpellcheckServiceFactory::GetForContext(profile);
if (!spellcheck)
return;
spellcheck->GetFeedbackSender()->IgnoredSuggestions(misspelling_hash_);

Powered by Google App Engine
This is Rietveld 408576698