mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
On the port side, this update brings: - libvulkan enabled by default - more unit tests enabled - no longer dependent on Python 2.7 Security: https://vuxml.freebsd.org/freebsd/e0914087-9a09-11ec-9e61-3065ec8fd3ec.html
20 lines
926 B
C++
20 lines
926 B
C++
--- chrome/browser/memory_details.cc.orig 2022-02-28 16:54:41 UTC
|
|
+++ chrome/browser/memory_details.cc
|
|
@@ -38,7 +38,7 @@
|
|
#include "services/resource_coordinator/public/cpp/memory_instrumentation/memory_instrumentation.h"
|
|
#include "ui/base/l10n/l10n_util.h"
|
|
|
|
-#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_ANDROID)
|
|
+#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_BSD)
|
|
#include "content/public/browser/zygote_host/zygote_host_linux.h"
|
|
#endif
|
|
|
|
@@ -329,7 +329,7 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
|
|
std::ref(process)));
|
|
}
|
|
|
|
-#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_ANDROID)
|
|
+#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC) && !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_BSD)
|
|
if (content::ZygoteHost::GetInstance()->IsZygotePid(process.pid)) {
|
|
process.process_type = content::PROCESS_TYPE_ZYGOTE;
|
|
}
|