From fd1a13c1dd7617e5170aa7d4628af35f42167076 Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Mon, 2 Sep 2024 10:33:25 +0200 Subject: [PATCH] (Temp) Disable experimental-web-platform-features: #1388 --- build/cromite_patches_list.txt | 1 + ...e-experimental-web-platform-features.patch | 27 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 build/patches/Temp-disable-experimental-web-platform-features.patch diff --git a/build/cromite_patches_list.txt b/build/cromite_patches_list.txt index f9e830cc..1c2cfc37 100644 --- a/build/cromite_patches_list.txt +++ b/build/cromite_patches_list.txt @@ -301,6 +301,7 @@ Temp-disable-predictive-back-gesture.patch TEMP-Add-a-log-to-track-strange-behavior.patch Temp-guard-FileSystemAccessPersistentPermissions.patch Never-treat-Proguard-warnings-as-errors.patch +Temp-disable-experimental-web-platform-features.patch Fix-chromium-build-bugs.patch # adblock patches diff --git a/build/patches/Temp-disable-experimental-web-platform-features.patch b/build/patches/Temp-disable-experimental-web-platform-features.patch new file mode 100644 index 00000000..63d4cfe7 --- /dev/null +++ b/build/patches/Temp-disable-experimental-web-platform-features.patch @@ -0,0 +1,27 @@ +From: uazo +Date: Mon, 2 Sep 2024 07:05:25 +0000 +Subject: Temp disable experimental-web-platform-features + +--- + chrome/browser/about_flags.cc | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc +--- a/chrome/browser/about_flags.cc ++++ b/chrome/browser/about_flags.cc +@@ -4383,10 +4383,10 @@ const FeatureEntry kFeatureEntries[] = { + {"enable-fontations-backend", flag_descriptions::kFontationsFontBackendName, + flag_descriptions::kFontationsFontBackendDescription, kOsAll, + FEATURE_VALUE_TYPE(blink::features::kFontationsFontBackend)}, +- {"enable-experimental-web-platform-features", +- flag_descriptions::kExperimentalWebPlatformFeaturesName, +- flag_descriptions::kExperimentalWebPlatformFeaturesDescription, kOsAll, +- SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)}, ++ // {"enable-experimental-web-platform-features", ++ // flag_descriptions::kExperimentalWebPlatformFeaturesName, ++ // flag_descriptions::kExperimentalWebPlatformFeaturesDescription, kOsAll, ++ // SINGLE_VALUE_TYPE(switches::kEnableExperimentalWebPlatformFeatures)}, + {"top-chrome-touch-ui", flag_descriptions::kTopChromeTouchUiName, + flag_descriptions::kTopChromeTouchUiDescription, kOsDesktop, + MULTI_VALUE_TYPE(kTopChromeTouchUiChoices)}, +--