summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-09-13 14:22:07 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-09-13 20:42:33 +0200
commit3db4bb06b1adab23426a480c18311365ebc3dcc3 (patch)
treea5f256099701892e82805497e0dbd999840affc8 /www-client
parentx11-misc/xscreensaver: remove unused patch (diff)
downloadgentoo-3db4bb06b1adab23426a480c18311365ebc3dcc3.tar.gz
gentoo-3db4bb06b1adab23426a480c18311365ebc3dcc3.tar.bz2
gentoo-3db4bb06b1adab23426a480c18311365ebc3dcc3.zip
www-client/chromium: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/32753 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-client')
-rw-r--r--www-client/chromium/files/chromium-114-gcc12.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/www-client/chromium/files/chromium-114-gcc12.patch b/www-client/chromium/files/chromium-114-gcc12.patch
deleted file mode 100644
index 5070135c6117..000000000000
--- a/www-client/chromium/files/chromium-114-gcc12.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-https://chromium.googlesource.com/chromium/src/+/a1fec6273f3ad7c73b35bb420a5540355df35b74
-controlledframe: Fix start up crash
-
-This commit applies a fix from mail@maciej.szmigiero.name to prevent a
-null reference error in GetControlledFrameFeatureList(). The fix is to
-add static to `feature_list` so that the object lives past this
-function.
-
-BUG=1447422
-
-Change-Id: I22879831ec879ce7d6a178760540f88106b3ded4
-Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4555985
-Commit-Queue: Ovidio Ruiz-Henríquez <odejesush@chromium.org>
-Reviewed-by: David Roger <droger@chromium.org>
-Reviewed-by: Chase Phillips <cmp@chromium.org>
-Auto-Submit: Ovidio Ruiz-Henríquez <odejesush@chromium.org>
-Cr-Commit-Position: refs/heads/main@{#1149296}
-
---- a/chrome/common/initialize_extensions_client.cc
-+++ b/chrome/common/initialize_extensions_client.cc
-
-@@ -19,7 +19,7 @@
-
- // This list should stay in sync with GetExpectedDelegatedFeaturesForTest().
- base::span<const char* const> GetControlledFrameFeatureList() {
-- constexpr const char* feature_list[] = {
-+ static constexpr const char* feature_list[] = {
- "controlledFrameInternal", "chromeWebViewInternal", "guestViewInternal",
- "webRequestInternal", "webViewInternal",
- };