mirror of
https://git.freebsd.org/ports.git
synced 2025-06-25 06:30:29 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
20 lines
746 B
C++
20 lines
746 B
C++
--- chrome/browser/ui/chrome_pages.cc.orig 2023-08-10 01:48:36 UTC
|
|
+++ chrome/browser/ui/chrome_pages.cc
|
|
@@ -71,7 +71,7 @@
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_FUCHSIA)
|
|
+ BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
#include "chrome/browser/web_applications/web_app_utils.h"
|
|
#endif
|
|
|
|
@@ -623,7 +623,7 @@ void ShowShortcutCustomizationApp(Profile* profile) {
|
|
}
|
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \
|
|
- BUILDFLAG(IS_FUCHSIA)
|
|
+ BUILDFLAG(IS_FUCHSIA) || BUILDFLAG(IS_BSD)
|
|
void ShowWebAppSettings(Browser* browser,
|
|
const std::string& app_id,
|
|
web_app::AppSettingsPageEntryPoint entry_point) {
|