diff options
Diffstat (limited to 'chrome/browser/spellchecker/spellcheck_factory.cc')
-rw-r--r-- | chrome/browser/spellchecker/spellcheck_factory.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/spellchecker/spellcheck_factory.cc b/chrome/browser/spellchecker/spellcheck_factory.cc index 29f5035..4116ff6 100644 --- a/chrome/browser/spellchecker/spellcheck_factory.cc +++ b/chrome/browser/spellchecker/spellcheck_factory.cc @@ -9,7 +9,7 @@ #include "chrome/browser/profiles/incognito_helpers.h" #include "chrome/browser/spellchecker/spellcheck_service.h" #include "chrome/common/pref_names.h" -#include "components/browser_context_keyed_service/browser_context_dependency_manager.h" +#include "components/keyed_service/content/browser_context_dependency_manager.h" #include "components/user_prefs/pref_registry_syncable.h" #include "components/user_prefs/user_prefs.h" #include "content/public/browser/render_process_host.h" @@ -50,7 +50,7 @@ SpellcheckServiceFactory::SpellcheckServiceFactory() SpellcheckServiceFactory::~SpellcheckServiceFactory() {} -BrowserContextKeyedService* SpellcheckServiceFactory::BuildServiceInstanceFor( +KeyedService* SpellcheckServiceFactory::BuildServiceInstanceFor( content::BrowserContext* context) const { // Many variables are initialized from the |context| in the SpellcheckService. SpellcheckService* spellcheck = new SpellcheckService(context); |