mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 21:20:31 -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
844 B
C++
20 lines
844 B
C++
--- chrome/updater/app/app_uninstall.cc.orig 2023-05-25 00:41:49 UTC
|
|
+++ chrome/updater/app/app_uninstall.cc
|
|
@@ -39,7 +39,7 @@
|
|
#include "chrome/updater/posix/setup.h"
|
|
#endif
|
|
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
// TODO(crbug.com/1431487): Remove these includes after investigation.
|
|
#include "base/ranges/algorithm.h"
|
|
#include "url/gurl.h"
|
|
@@ -141,7 +141,7 @@ void AppUninstall::UninstallAll(int reason) {
|
|
uninstall_data.version = base::Version(kUpdaterVersion);
|
|
}
|
|
// TODO(crbug.com/1431487): Remove this code after investigation.
|
|
-#if BUILDFLAG(IS_LINUX)
|
|
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
|
|
CHECK(base::ranges::none_of(config_->PingUrl(), [](const GURL& url) {
|
|
return url.DomainIs("update.googleapis.com");
|
|
})) << "Attempted to send an uninstall ping to non-local server";
|