From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6237715ACFC for ; Tue, 2 May 2023 20:05:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0981E09E5; Tue, 2 May 2023 20:05:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D436AE09E5 for ; Tue, 2 May 2023 20:05:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69BE73416C5 for ; Tue, 2 May 2023 20:05:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 013FC8E4 for ; Tue, 2 May 2023 20:05:09 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1683057907.b60d25c220c343feae0b26a0853cab976ff89842.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/chromium/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/chromium/files/chromium-111-ozone-platform.patch X-VCS-Directories: www-client/chromium/files/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: b60d25c220c343feae0b26a0853cab976ff89842 X-VCS-Branch: master Date: Tue, 2 May 2023 20:05:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: be1c623e-44a5-417e-9ed5-2b85507f03dc X-Archives-Hash: 6f3b202f1bc487b9b0445ddf10a24f62 commit: b60d25c220c343feae0b26a0853cab976ff89842 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon May 1 18:38:18 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue May 2 20:05:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b60d25c2 www-client/chromium: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30829 Signed-off-by: Mike Gilbert gentoo.org> .../files/chromium-111-ozone-platform.patch | 32 ---------------------- 1 file changed, 32 deletions(-) diff --git a/www-client/chromium/files/chromium-111-ozone-platform.patch b/www-client/chromium/files/chromium-111-ozone-platform.patch deleted file mode 100644 index cf9d11793e65..000000000000 --- a/www-client/chromium/files/chromium-111-ozone-platform.patch +++ /dev/null @@ -1,32 +0,0 @@ -From eeb0b18565e6e644524fedb511a1658b502836cf Mon Sep 17 00:00:00 2001 -From: Jose Dapena Paz -Date: Tue, 14 Feb 2023 19:09:47 +0000 -Subject: [PATCH] IWYU: missing PlatformKeyboardHook include in ozone_platform.cc - -libstdc++ implementation of std::unique_ptr requires full declaration -of the contained type for converting from nullptr. Add the required -include in OzonePlatform for PlatformKeyboardHook. - -This fixes this build error with GCC and libstdc++: - /usr/include/c++/12/bits/unique_ptr.h:93:23: error: invalid application of ‘sizeof’ to incomplete type ‘ui::PlatformKeyboardHook’ - -Bug: 957519 -Change-Id: I20429925dd00108cf684548b0260ebb053a8ada2 -Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4239869 -Reviewed-by: Robert Kroeger -Commit-Queue: José Dapena Paz -Cr-Commit-Position: refs/heads/main@{#1105184} ---- - -diff --git a/ui/ozone/public/ozone_platform.cc b/ui/ozone/public/ozone_platform.cc -index 81f8070..6c4ce21 100644 ---- a/ui/ozone/public/ozone_platform.cc -+++ b/ui/ozone/public/ozone_platform.cc -@@ -15,6 +15,7 @@ - #include "ui/ozone/platform_object.h" - #include "ui/ozone/platform_selection.h" - #include "ui/ozone/public/platform_global_shortcut_listener.h" -+#include "ui/ozone/public/platform_keyboard_hook.h" - #include "ui/ozone/public/platform_menu_utils.h" - #include "ui/ozone/public/platform_screen.h" - #include "ui/ozone/public/platform_user_input_monitor.h"