From 4f832fa064b6c7527c3c251e09a9579b880f26d1 Mon Sep 17 00:00:00 2001 From: Tomas Popela Date: Tue, 27 Aug 2019 07:56:12 +0200 Subject: [PATCH] Add an updated patch that was missed --- ....3809.132-gcc-ambigous-instantiation.patch | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 chromium-76.0.3809.132-gcc-ambigous-instantiation.patch diff --git a/chromium-76.0.3809.132-gcc-ambigous-instantiation.patch b/chromium-76.0.3809.132-gcc-ambigous-instantiation.patch new file mode 100644 index 0000000..73db4d4 --- /dev/null +++ b/chromium-76.0.3809.132-gcc-ambigous-instantiation.patch @@ -0,0 +1,21 @@ +diff -up chromium-76.0.3809.132/services/network/cross_origin_read_blocking.cc.gcc-ambigous-instantiation chromium-76.0.3809.132/services/network/cross_origin_read_blocking.cc +--- chromium-76.0.3809.132/services/network/cross_origin_read_blocking.cc.gcc-ambigous-instantiation 2019-08-26 21:02:33.000000000 +0200 ++++ chromium-76.0.3809.132/services/network/cross_origin_read_blocking.cc 2019-08-27 06:58:23.963821667 +0200 +@@ -207,7 +207,7 @@ std::set& GetPluginProxyingProcesse + // confirmation sniffing because images, scripts, etc. are frequently + // mislabelled by http servers as HTML/JSON/XML). + base::flat_set& GetNeverSniffedMimeTypes() { +- static base::NoDestructor> s_types({ ++ static base::NoDestructor> s_types{{ + // The list below has been populated based on most commonly used content + // types according to HTTP Archive - see: + // https://github.com/whatwg/fetch/issues/860#issuecomment-457330454 +@@ -219,7 +219,7 @@ base::flat_set& GetNeverSni + "application/x-protobuf", + "application/zip", + "text/event-stream", +- }); ++ }}; + + // All items need to be lower-case, to support case-insensitive comparisons + // later.