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 --- www-client/chromium/files/chromium-union.patch | 54 -------------------------- 1 file changed, 54 deletions(-) delete mode 100644 www-client/chromium/files/chromium-union.patch (limited to 'www-client/chromium/files/chromium-union.patch') diff --git a/www-client/chromium/files/chromium-union.patch b/www-client/chromium/files/chromium-union.patch deleted file mode 100644 index be41f6d..0000000 --- a/www-client/chromium/files/chromium-union.patch +++ /dev/null @@ -1,54 +0,0 @@ -diff --git a/base/values.h b/base/values.h -index 6f2cd3cc3..7f148d259 100644 ---- a/base/values.h -+++ b/base/values.h -@@ -415,42 +415,13 @@ class BASE_EXPORT Value { - // of 24, without losing any information. Results are unchanged for x86, - // x86_64 and arm64 (16, 32 and 32 bytes respectively). - union { -- struct { -- // TODO(crbug.com/646113): Make these private once DictionaryValue and -- // ListValue are properly inlined. -- Type type_ : 8; -- }; -- struct { -- Type bool_type_ : 8; -- bool bool_value_; -- }; -- struct { -- Type int_type_ : 8; -- int int_value_; -- }; -- struct { -- Type double_type_ : 8; -- // Subtle: On architectures that require it, the compiler will ensure -- // that |double_value_|'s offset is a multiple of 8 (e.g. 32-bit ARM). -- // See technical note above to understand why it is important. -- double double_value_; -- }; -- struct { -- Type string_type_ : 8; -- std::string string_value_; -- }; -- struct { -- Type binary_type_ : 8; -- BlobStorage binary_value_; -- }; -- struct { -- Type dict_type_ : 8; -- DictStorage dict_; -- }; -- struct { -- Type list_type_ : 8; -- ListStorage list_; -- }; -+ bool bool_value_; -+ int int_value_; -+ double double_value_; -+ std::string string_value_; -+ BlobStorage binary_value_; -+ DictStorage dict_; -+ ListStorage list_; - }; - - private: -- cgit v1.2.3