From f13f385aa8e59ebc73084901bb79a87f347ea275 Mon Sep 17 00:00:00 2001 From: Mikhail Date: Tue, 28 Oct 2025 22:57:20 +0400 Subject: [PATCH] Disable WebAudioDeferPullStatusUpdate (upstream issues) (#32062) A backports of http://crrev.com/c/7063209 The PR disables a problematic upstream feature WebAudioDeferPullStatusUpdate. --- patches/third_party-blink-common-features.cc.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/third_party-blink-common-features.cc.patch diff --git a/patches/third_party-blink-common-features.cc.patch b/patches/third_party-blink-common-features.cc.patch new file mode 100644 index 00000000000..4e8b2bc54c6 --- /dev/null +++ b/patches/third_party-blink-common-features.cc.patch @@ -0,0 +1,13 @@ +diff --git a/third_party/blink/common/features.cc b/third_party/blink/common/features.cc +index 01e8a8e91cf97640f302d82f5c28ccd3e94f51df..3b5d93b1ec6ade3b7e8db8e5bb9f1e35e0fbf748 100644 +--- a/third_party/blink/common/features.cc ++++ b/third_party/blink/common/features.cc +@@ -2495,7 +2495,7 @@ BASE_FEATURE(kWebAudioAllowDenormalInProcessing, + // Use deferred pull status update instead of updating the status directly + // on audio thread. See https://crbug.com/40249972. + BASE_FEATURE(kWebAudioDeferPullStatusUpdate, +- base::FEATURE_ENABLED_BY_DEFAULT); ++ base::FEATURE_DISABLED_BY_DEFAULT); + + /// Enables cache-aware WebFonts loading. See https://crbug.com/570205. + // The feature is disabled on Android for WebView API issue discussed at