From ca971023d559acceb7a6adc303d5ec213a64a0b5 Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Tue, 31 Oct 2023 17:54:21 +0100 Subject: [PATCH] Add new patches for 119 --- build/bromite_patches_list.txt | 2 ++ .../00Block-Intents-While-Locked.patch | 25 +++++++++++++++++++ .../00Keep-Manta-Service-Disabled.patch | 22 ++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 build/patches/00Block-Intents-While-Locked.patch create mode 100644 build/patches/00Keep-Manta-Service-Disabled.patch diff --git a/build/bromite_patches_list.txt b/build/bromite_patches_list.txt index da05c23e..1e3c4fbe 100644 --- a/build/bromite_patches_list.txt +++ b/build/bromite_patches_list.txt @@ -277,6 +277,8 @@ Timezone-customization.patch 00Disable-prefers-reduced-transparency-media-query.patch 00libjxl-0-8-2.patch 00Add-support-to-jxl.patch +00Block-Intents-While-Locked.patch +00Keep-Manta-Service-Disabled.patch 00Temp-PerformanceNavigationTiming-privacy-fix.patch 00Temp-remove-support-for-shared-workers.patch diff --git a/build/patches/00Block-Intents-While-Locked.patch b/build/patches/00Block-Intents-While-Locked.patch new file mode 100644 index 00000000..1abf423e --- /dev/null +++ b/build/patches/00Block-Intents-While-Locked.patch @@ -0,0 +1,25 @@ +From: Your Name +Date: Tue, 31 Oct 2023 16:16:08 +0000 +Subject: Block Intents While Locked + +see https://source.chromium.org/chromium/chromium/src/+/c5b50f4c2d42e7b808fd3e6fb3545cdb3f4d82c9 +--- + chrome/browser/flags/android/chrome_feature_list.cc | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/chrome/browser/flags/android/chrome_feature_list.cc b/chrome/browser/flags/android/chrome_feature_list.cc +--- a/chrome/browser/flags/android/chrome_feature_list.cc ++++ b/chrome/browser/flags/android/chrome_feature_list.cc +@@ -540,8 +540,8 @@ BASE_FEATURE(kBaselineGM3SurfaceColors, + base::FEATURE_ENABLED_BY_DEFAULT); + + BASE_FEATURE(kBlockIntentsWhileLocked, +- "BlockIntentsWhileLocked", +- base::FEATURE_DISABLED_BY_DEFAULT); ++ "BlockIntentsWhileLocked", // enabled ++ base::FEATURE_ENABLED_BY_DEFAULT); // by default + + BASE_FEATURE(kCacheActivityTaskID, + "CacheActivityTaskID", +-- +2.25.1 diff --git a/build/patches/00Keep-Manta-Service-Disabled.patch b/build/patches/00Keep-Manta-Service-Disabled.patch new file mode 100644 index 00000000..5a2524da --- /dev/null +++ b/build/patches/00Keep-Manta-Service-Disabled.patch @@ -0,0 +1,22 @@ +From: Your Name +Date: Tue, 31 Oct 2023 16:20:12 +0000 +Subject: Keep Manta Service Disabled + +--- + components/manta/features.cc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/components/manta/features.cc b/components/manta/features.cc +--- a/components/manta/features.cc ++++ b/components/manta/features.cc +@@ -8,7 +8,7 @@ + + namespace manta::features { + +-BASE_FEATURE(kMantaService, "MantaService", base::FEATURE_DISABLED_BY_DEFAULT); ++BASE_FEATURE(kMantaService, "MantaService", base::FEATURE_DISABLED_BY_DEFAULT); // keep disabled + + bool IsMantaServiceEnabled() { + return base::FeatureList::IsEnabled(kMantaService); +-- +2.25.1