blob: edd45b51a6baa19cf55fedfce331be082c77662e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- chrome/browser/ui/web_applications/app_browser_controller.cc.orig 2025-10-30 15:44:36 UTC
+++ chrome/browser/ui/web_applications/app_browser_controller.cc
@@ -492,7 +492,7 @@ std::u16string AppBrowserController::GetLaunchFlashTex
// web bundle. The flash text is not needed on platforms that already display
// the app name in the title bar (e.g. Mac, Windows, and Linux).
if (IsIsolatedWebApp()) {
-#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
return std::u16string();
#else // !(BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX))
return GetAppShortName();
|