12345678910111213141516171819202122232425 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Samuel Attard <[email protected]>
- Date: Wed, 23 Oct 2019 11:43:58 -0700
- Subject: remove usage of incognito APIs in the spellchecker
- chrome::GetBrowserContextRedirectedInIncognito is not available in
- Electron nor do we want it to be. We could potentially upstream a
- change to move more of //chrome spellchecker logic into //components so
- that we can further separate our dependency from //chrome.
- diff --git a/chrome/browser/spellchecker/spellcheck_factory.cc b/chrome/browser/spellchecker/spellcheck_factory.cc
- index 9d238b5de516a672d5b99f2f66316a205fc705a7..7c3b6a69acb16186add5d467dbc22360d90d46d4 100644
- --- a/chrome/browser/spellchecker/spellcheck_factory.cc
- +++ b/chrome/browser/spellchecker/spellcheck_factory.cc
- @@ -72,7 +72,10 @@ void SpellcheckServiceFactory::RegisterProfilePrefs(
-
- content::BrowserContext* SpellcheckServiceFactory::GetBrowserContextToUse(
- content::BrowserContext* context) const {
- + return context;
- +#if 0
- return chrome::GetBrowserContextRedirectedInIncognito(context);
- +#endif
- }
-
- bool SpellcheckServiceFactory::ServiceIsNULLWhileTesting() const {
|