123456789101112131415161718192021222324252627282930313233 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Calvin Watford <[email protected]>
- Date: Fri, 28 Apr 2023 17:06:30 -0600
- Subject: fix: remove profiles from spellcheck_service
- Electron doesn't support profiles.
- diff --git a/chrome/browser/spellchecker/spellcheck_service.cc b/chrome/browser/spellchecker/spellcheck_service.cc
- index 910534aac947890b16b176b10ac8eae9857bd2d7..1bb22b89b6ec4d620354bb7747c37cae9dd3a57e 100644
- --- a/chrome/browser/spellchecker/spellcheck_service.cc
- +++ b/chrome/browser/spellchecker/spellcheck_service.cc
- @@ -20,8 +20,10 @@
- #include "base/synchronization/waitable_event.h"
- #include "base/values.h"
- #include "build/build_config.h"
- +#if 0
- #include "chrome/browser/profiles/profile.h"
- #include "chrome/browser/profiles/profiles_state.h"
- +#endif
- #include "chrome/browser/spellchecker/spellcheck_factory.h"
- #include "chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h"
- #include "components/language/core/browser/pref_names.h"
- @@ -66,7 +68,10 @@ SpellcheckService::SpellCheckerBinder& GetSpellCheckerBinderOverride() {
- // Only record spelling-configuration metrics for profiles in which the user
- // can configure spelling.
- bool RecordSpellingConfigurationMetrics(content::BrowserContext* context) {
- +#if 0
- return profiles::IsRegularUserProfile(Profile::FromBrowserContext(context));
- +#endif
- + return true;
- }
-
- } // namespace
|