mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
This update also removes the --audio-backend command line switch in favor of an actual setting in the browser that can be changed at chrome://flags/#audio-backend Security: https://vuxml.freebsd.org/freebsd/15d398ea-4f73-11ef-8a0f-a8a1599412c6.html
11 lines
589 B
C++
11 lines
589 B
C++
--- components/variations/service/variations_service.cc.orig 2024-07-30 11:12:21 UTC
|
|
+++ components/variations/service/variations_service.cc
|
|
@@ -101,7 +101,7 @@ std::string GetPlatformString() {
|
|
return "android";
|
|
#elif BUILDFLAG(IS_FUCHSIA)
|
|
return "fuchsia";
|
|
-#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) || BUILDFLAG(IS_SOLARIS)
|
|
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) || BUILDFLAG(IS_SOLARIS) || BUILDFLAG(IS_BSD)
|
|
// Default BSD and SOLARIS to Linux to not break those builds, although these
|
|
// platforms are not officially supported by Chrome.
|
|
return "linux";
|