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)}, +--