mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
Changelog: https://chromium.googlesource.com/chromium/src/+log/75.0.3770.142..76.0.3809.100?pretty=fuller&n=10000 Submitted by: Matthias Wolf <matthias@rheinwolf.de> MFH: 2019Q3
20 lines
949 B
C++
20 lines
949 B
C++
--- content/public/common/content_features.cc.orig 2019-07-24 18:58:24 UTC
|
|
+++ content/public/common/content_features.cc
|
|
@@ -577,7 +577,7 @@ const base::Feature kWebAssemblyThreads {
|
|
};
|
|
|
|
// Enable WebAssembly trap handler.
|
|
-#if (defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX)) && \
|
|
+#if (defined(OS_BSD) || defined(OS_LINUX) || defined(OS_WIN) || defined(OS_MACOSX)) && \
|
|
defined(ARCH_CPU_X86_64)
|
|
const base::Feature kWebAssemblyTrapHandler{"WebAssemblyTrapHandler",
|
|
base::FEATURE_ENABLED_BY_DEFAULT};
|
|
@@ -612,7 +612,7 @@ const base::Feature kWebAuthBle{"WebAuthenticationBle"
|
|
// https://w3c.github.io/webauthn
|
|
const base::Feature kWebAuthCable {
|
|
"WebAuthenticationCable",
|
|
-#if !defined(OS_CHROMEOS) && defined(OS_LINUX)
|
|
+#if (!defined(OS_CHROMEOS) && defined(OS_LINUX)) || defined(OS_BSD)
|
|
base::FEATURE_DISABLED_BY_DEFAULT
|
|
#else
|
|
base::FEATURE_ENABLED_BY_DEFAULT
|