mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
20 lines
933 B
C++
20 lines
933 B
C++
--- chrome/common/channel_info_posix.cc.orig 2021-07-15 19:13:34 UTC
|
|
+++ chrome/common/channel_info_posix.cc
|
|
@@ -90,7 +90,7 @@ std::string GetChannelSuffixForDataDir() {
|
|
|
|
// TODO(crbug.com/1052397): Revisit the macro expression once build flag switch
|
|
// of lacros-chrome is complete.
|
|
-#if defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
+#if defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS) || defined(OS_BSD)
|
|
std::string GetDesktopName(base::Environment* env) {
|
|
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
|
|
// Google Chrome packaged as a snap is a special case: the application name
|
|
@@ -120,7 +120,7 @@ std::string GetDesktopName(base::Environment* env) {
|
|
return "chromium-browser.desktop";
|
|
#endif
|
|
}
|
|
-#endif // defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
+#endif // defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS) || defined(OS_BSD)
|
|
|
|
version_info::Channel GetChannel() {
|
|
return GetChannelImpl().channel;
|