diff --git a/patches/chromium/.patches b/patches/chromium/.patches index f45619f998f34..e38edbab88ea0 100644 --- a/patches/chromium/.patches +++ b/patches/chromium/.patches @@ -102,7 +102,6 @@ fix_aspect_ratio_with_max_size.patch fix_dont_delete_SerialPortManager_on_main_thread.patch fix_crash_when_saving_edited_pdf_files.patch port_autofill_colors_to_the_color_pipeline.patch -build_disable_partition_alloc_on_mac.patch fix_non-client_mouse_tracking_and_message_bubbling_on_windows.patch build_make_libcxx_abi_unstable_false_for_electron.patch introduce_ozoneplatform_electron_can_call_x11_property.patch diff --git a/patches/chromium/build_disable_partition_alloc_on_mac.patch b/patches/chromium/build_disable_partition_alloc_on_mac.patch deleted file mode 100644 index 47744405285ac..0000000000000 --- a/patches/chromium/build_disable_partition_alloc_on_mac.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 -From: VerteDinde -Date: Tue, 1 Mar 2022 12:07:25 -0800 -Subject: build: disable partition alloc on mac - -Enabling partition alloc caused a crash when spawning -a child process. This patch disables partition alloc for mac, -and can be removed when the crash in fork is resolved. -Related issue: https://github.com/electron/electron/issues/32718 - -diff --git a/base/allocator/allocator.gni b/base/allocator/allocator.gni -index c3c62f83553bd0d258de4d5d9ecd8b02a74f594b..3dbf4462fa056db7a4084453ef35f1b944fbd093 100644 ---- a/base/allocator/allocator.gni -+++ b/base/allocator/allocator.gni -@@ -20,7 +20,7 @@ _disable_partition_alloc = is_component_build || (is_win && is_debug) - - # - NaCl: No plans to support it. - # - iOS: not done yet. --_is_partition_alloc_platform = !is_nacl && !is_ios -+_is_partition_alloc_platform = !is_nacl && !is_ios && !is_mac - - # Under Windows Debug the allocator shim is not compatible with CRT. - # NaCl in particular does seem to link some binaries statically