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

Unified Diff: chrome/browser/extensions/api/spellcheck/spellcheck_api.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
« no previous file with comments | « AUTHORS ('k') | chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/spellcheck/spellcheck_api.cc
===================================================================
--- chrome/browser/extensions/api/spellcheck/spellcheck_api.cc (revision 223601)
+++ chrome/browser/extensions/api/spellcheck/spellcheck_api.cc (working copy)
@@ -70,7 +70,7 @@
GetSpellcheckDictionaryInfo(extension);
if (spellcheck_info) {
// TODO(rlp): Handle load failure. =
- spellcheck = SpellcheckServiceFactory::GetForProfile(profile);
+ spellcheck = SpellcheckServiceFactory::GetForContext(profile);
spellcheck->LoadExternalDictionary(
spellcheck_info->language,
spellcheck_info->locale,
@@ -86,7 +86,7 @@
GetSpellcheckDictionaryInfo(extension);
if (spellcheck_info) {
// TODO(rlp): Handle unload failure.
- spellcheck = SpellcheckServiceFactory::GetForProfile(profile);
+ spellcheck = SpellcheckServiceFactory::GetForContext(profile);
spellcheck->UnloadExternalDictionary(spellcheck_info->path);
}
break;
« no previous file with comments | « AUTHORS ('k') | chrome/browser/spellchecker/spellcheck_custom_dictionary_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698