mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 10:59:14 -04:00
Approved by: rene (mentor, implicit) Security: https://vuxml.freebsd.org/freebsd/246174d3-e979-11ed-8290-a8a1599412c6.html
18 lines
741 B
C++
18 lines
741 B
C++
--- chrome/common/channel_info.h.orig 2023-04-28 17:01:32 UTC
|
|
+++ chrome/common/channel_info.h
|
|
@@ -104,13 +104,13 @@ void ClearChannelForTesting();
|
|
std::string GetChannelSuffixForDataDir();
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
std::string GetChannelSuffixForExtraFlagsEnvVarName();
|
|
#endif
|
|
|
|
// TODO(crbug.com/1052397): Revisit the macro expression once build flag switch
|
|
// of lacros-chrome is complete.
|
|
-#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_BSD)
|
|
// Returns the channel-specific filename of the desktop shortcut used to launch
|
|
// the browser.
|
|
std::string GetDesktopName(base::Environment* env);
|