forked from Lainports/opnsense-ports
29 lines
1.3 KiB
C++
29 lines
1.3 KiB
C++
--- chrome/browser/profiles/profiles_state.cc.orig 2024-08-14 20:54:37 UTC
|
|
+++ chrome/browser/profiles/profiles_state.cc
|
|
@@ -196,7 +196,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.
|
|
@@ -243,7 +243,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 (base::FeatureList::IsEnabled(
|
|
supervised_user::kHideGuestModeForSupervisedUsers) &&
|
|
@@ -259,7 +259,7 @@ bool IsGuestModeEnabled(const Profile& profile) {
|
|
}
|
|
|
|
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)
|
|
if (base::FeatureList::IsEnabled(
|
|
supervised_user::kHideGuestModeForSupervisedUsers)) {
|
|
ProfileAttributesEntry* profile_attributes =
|