mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
29 lines
1.3 KiB
C++
29 lines
1.3 KiB
C++
--- chrome/browser/profiles/profiles_state.cc.orig 2025-03-05 08:14:56 UTC
|
|
+++ chrome/browser/profiles/profiles_state.cc
|
|
@@ -188,7 +188,7 @@ bool IsGuestModeRequested(const base::CommandLine& com
|
|
PrefService* local_state,
|
|
bool show_warning) {
|
|
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN) || \
|
|
- BUILDFLAG(IS_MAC)
|
|
+ BUILDFLAG(IS_MAC) || BUILDFLAG(IS_BSD)
|
|
DCHECK(local_state);
|
|
|
|
// Check if guest mode enforcement commandline switch or policy are provided.
|
|
@@ -224,7 +224,7 @@ bool IsGuestModeEnabled() {
|
|
return false;
|
|
}
|
|
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
|
|
// If there are any supervised profiles, disable guest mode.
|
|
if (std::ranges::any_of(g_browser_process->profile_manager()
|
|
->GetProfileAttributesStorage()
|
|
@@ -240,7 +240,7 @@ bool IsGuestModeEnabled() {
|
|
}
|
|
|
|
bool IsGuestModeEnabled(const Profile& profile) {
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD)
|
|
ProfileAttributesEntry* profile_attributes =
|
|
g_browser_process->profile_manager()
|
|
->GetProfileAttributesStorage()
|