From 43609ca84694acca988dc0ae591c69ac447659b2 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Thu, 14 Jul 2022 19:16:24 -0400 Subject: chromium: Remove obsolete versions and patches --- .../chromium-95-text_fragments_utils-include.patch | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 www-client/chromium/files/chromium-95-text_fragments_utils-include.patch (limited to 'www-client/chromium/files/chromium-95-text_fragments_utils-include.patch') diff --git a/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch b/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch deleted file mode 100644 index e2d6160..0000000 --- a/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch +++ /dev/null @@ -1,37 +0,0 @@ -From f48b39ee129132337b93e905c8f304c65766742a Mon Sep 17 00:00:00 2001 -From: Stephan Hartmann -Date: Tue, 31 Aug 2021 12:22:35 +0000 -Subject: [PATCH] IWYU: add string.h for strlen in text_fragments_utils - -Remove namespace std from strlen to avoid including cstring as well. ---- - .../shared_highlighting/core/common/text_fragments_utils.cc | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/components/shared_highlighting/core/common/text_fragments_utils.cc b/components/shared_highlighting/core/common/text_fragments_utils.cc -index 9f39ce6..389c09c 100644 ---- a/components/shared_highlighting/core/common/text_fragments_utils.cc -+++ b/components/shared_highlighting/core/common/text_fragments_utils.cc -@@ -4,6 +4,8 @@ - - #include "components/shared_highlighting/core/common/text_fragments_utils.h" - -+#include -+ - #include - - #include "base/json/json_writer.h" -@@ -54,8 +56,8 @@ bool SplitUrlTextFragmentDirective(const std::string& full_url, - - // We only want to keep what's after the delimiter. - *highlight_directive = -- full_url.substr(pos + std::strlen(kFragmentsUrlDelimiter) + -- std::strlen(kFragmentParameterName)); -+ full_url.substr(pos + strlen(kFragmentsUrlDelimiter) + -+ strlen(kFragmentParameterName)); - return true; - } - --- -2.31.1 - -- cgit v1.2.3