mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 20:39:18 -04:00
Approved by: rene (mentor) Security: https://vuxml.freebsd.org/freebsd/310ca30e-a951-11ed-8314-a8a1599412c6.html
20 lines
964 B
C++
20 lines
964 B
C++
--- ui/base/ui_base_features.cc.orig 2023-02-08 09:03:45 UTC
|
|
+++ ui/base/ui_base_features.cc
|
|
@@ -205,7 +205,7 @@ BASE_FEATURE(kExperimentalFlingAnimation,
|
|
"ExperimentalFlingAnimation",
|
|
// TODO(crbug.com/1052397): Revisit the macro expression once build flag switch
|
|
// of lacros-chrome is complete.
|
|
-#if BUILDFLAG(IS_WIN) || \
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_BSD) || \
|
|
(BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS_ASH) && \
|
|
!BUILDFLAG(IS_CHROMEOS_LACROS))
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
@@ -311,7 +311,7 @@ bool IsForcedColorsEnabled() {
|
|
// milestones.
|
|
BASE_FEATURE(kEyeDropper,
|
|
"EyeDropper",
|
|
-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|
|
#else
|
|
base::FEATURE_DISABLED_BY_DEFAULT
|