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

Unified Diff: chrome/browser/ui/webui/options/language_options_handler_common.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 | « chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/options/language_options_handler_common.cc
===================================================================
--- chrome/browser/ui/webui/options/language_options_handler_common.cc (revision 223601)
+++ chrome/browser/ui/webui/options/language_options_handler_common.cc (working copy)
@@ -276,8 +276,9 @@
if (hunspell_dictionary_.get())
hunspell_dictionary_->RemoveObserver(this);
hunspell_dictionary_.reset();
- hunspell_dictionary_ = SpellcheckServiceFactory::GetForProfile(
- Profile::FromWebUI(web_ui()))->GetHunspellDictionary()->AsWeakPtr();
+ SpellcheckService* service = SpellcheckServiceFactory::GetForContext(
+ Profile::FromWebUI(web_ui()));
+ hunspell_dictionary_ = service->GetHunspellDictionary()->AsWeakPtr();
hunspell_dictionary_->AddObserver(this);
}
« no previous file with comments | « chrome/browser/ui/webui/options/language_dictionary_overlay_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698