summaryrefslogtreecommitdiff
path: root/www-client/chromium/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-13 22:45:20 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-13 22:45:20 +0100
commitab7810b87f5bb33b3ed5edd0dbda7f4bcd0cf70d (patch)
treef102e6ba13816f35c909cda970653f5422ee1b0d /www-client/chromium/files
parent6d478a9cbbd774e9d2743701d0931416e3ab9371 (diff)
gentoo auto-resync : 13:09:2023 - 22:45:20
Diffstat (limited to 'www-client/chromium/files')
-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",
- };