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/files/chromium-std-nullptr-83.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 www-client/chromium/files/chromium-std-nullptr-83.patch (limited to 'www-client/chromium/files/chromium-std-nullptr-83.patch') diff --git a/www-client/chromium/files/chromium-std-nullptr-83.patch b/www-client/chromium/files/chromium-std-nullptr-83.patch deleted file mode 100644 index a2efc76..0000000 --- a/www-client/chromium/files/chromium-std-nullptr-83.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.h b/third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.h -index a6b8547f5..5fa03cb35 100644 ---- a/third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.h -+++ b/third_party/blink/renderer/core/typed_arrays/array_buffer_view_helpers.h -@@ -36,7 +36,7 @@ class NotShared { - template ::value, int> = 0> - NotShared(const NotShared& other) : typed_array_(other.Get()) {} - -- explicit NotShared(nullptr_t) {} -+ explicit NotShared(std::nullptr_t) {} - explicit NotShared(T* typed_array) : typed_array_(typed_array) { - DCHECK(!typed_array || !typed_array->IsShared()); - } -@@ -95,7 +95,7 @@ class MaybeShared { - template ::value, int> = 0> - MaybeShared(const MaybeShared& other) : typed_array_(other.Get()) {} - -- explicit MaybeShared(nullptr_t) {} -+ explicit MaybeShared(std::nullptr_t) {} - // [AllowShared] array buffer view may be a view of non-shared array buffer, - // so we don't check if the buffer is SharedArrayBuffer or not. - // https://heycam.github.io/webidl/#AllowShared -- cgit v1.2.3