diff options
Diffstat (limited to 'devel/electron37/files/patch-chrome_browser_chrome__browser__main__linux.cc')
-rw-r--r-- | devel/electron37/files/patch-chrome_browser_chrome__browser__main__linux.cc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/devel/electron37/files/patch-chrome_browser_chrome__browser__main__linux.cc b/devel/electron37/files/patch-chrome_browser_chrome__browser__main__linux.cc new file mode 100644 index 000000000000..41fb728adfb9 --- /dev/null +++ b/devel/electron37/files/patch-chrome_browser_chrome__browser__main__linux.cc @@ -0,0 +1,39 @@ +--- chrome/browser/chrome_browser_main_linux.cc.orig 2025-04-22 20:15:27 UTC ++++ chrome/browser/chrome_browser_main_linux.cc +@@ -24,7 +24,7 @@ + #include "device/bluetooth/dbus/bluez_dbus_thread_manager.h" + #include "ui/base/l10n/l10n_util.h" + +-#if BUILDFLAG(IS_LINUX) ++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) + #include "ui/ozone/public/ozone_platform.h" + #endif + +@@ -65,7 +65,9 @@ void ChromeBrowserMainPartsLinux::PostCreateMainMessag + #endif // BUILDFLAG(IS_CHROMEOS) + + #if !BUILDFLAG(IS_CHROMEOS) ++#if !BUILDFLAG(IS_BSD) + bluez::BluezDBusManager::Initialize(nullptr /* system_bus */); ++#endif + + // Set up crypt config. This needs to be done before anything starts the + // network service, as the raw encryption key needs to be shared with the +@@ -91,7 +93,7 @@ void ChromeBrowserMainPartsLinux::PostCreateMainMessag + ChromeBrowserMainPartsPosix::PostCreateMainMessageLoop(); + } + +-#if BUILDFLAG(IS_LINUX) ++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD) + void ChromeBrowserMainPartsLinux::PostMainMessageLoopRun() { + ChromeBrowserMainPartsPosix::PostMainMessageLoopRun(); + ui::OzonePlatform::GetInstance()->PostMainMessageLoopRun(); +@@ -129,7 +131,7 @@ void ChromeBrowserMainPartsLinux::PostDestroyThreads() + #endif // BUILDFLAG(USE_DBUS) && !BUILDFLAG(IS_CHROMEOS) + + void ChromeBrowserMainPartsLinux::PostDestroyThreads() { +-#if BUILDFLAG(IS_CHROMEOS) ++#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_BSD) + // No-op; per PostBrowserStart() comment, this is done elsewhere. + #else + bluez::BluezDBusManager::Shutdown(); |