123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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/profiles/profile_keyed_service_factory.cc b/chrome/browser/profiles/profile_keyed_service_factory.cc
- index 30a7e6a641e7b17a47fb5c66fb44d3d5899b9e78..85764a533585df0abe398758e4fd510c711de375 100644
- --- a/chrome/browser/profiles/profile_keyed_service_factory.cc
- +++ b/chrome/browser/profiles/profile_keyed_service_factory.cc
- @@ -22,6 +22,9 @@ ProfileKeyedServiceFactory::~ProfileKeyedServiceFactory() = default;
-
- content::BrowserContext* ProfileKeyedServiceFactory::GetBrowserContextToUse(
- content::BrowserContext* context) const {
- + return context;
- +#if 0
- Profile* profile = Profile::FromBrowserContext(context);
- return profile_selections_.ApplyProfileSelection(profile);
- +#endif
- }
- diff --git a/chrome/browser/profiles/profile_selections.cc b/chrome/browser/profiles/profile_selections.cc
- index 25b15408665dc95702e7f1382fb8e7c0bb493599..bc0bad82ebcdceadc505e912ff27202b452fefab 100644
- --- a/chrome/browser/profiles/profile_selections.cc
- +++ b/chrome/browser/profiles/profile_selections.cc
- @@ -132,6 +132,7 @@ ProfileSelection ProfileSelections::GetProfileSelection(
- }
- #endif // BUILDFLAG(IS_CHROMEOS)
-
- +#if 0
- // Treat other off the record profiles as Incognito (primary otr) Profiles.
- if (profile->IsRegularProfile() || profile->IsIncognitoProfile() ||
- profile_metrics::GetBrowserProfileType(profile) ==
- @@ -148,6 +149,8 @@ ProfileSelection ProfileSelections::GetProfileSelection(
- }
-
- NOTREACHED();
- +#endif
- + return ProfileSelection::kNone;
- }
-
- void ProfileSelections::SetProfileSelectionForRegular(
|