Skip to content

Commit 27cca98

Browse files
authored
chromium-stable: bump to 133.0.6943.141 (#40)
[skip ci]
1 parent 80fd5c5 commit 27cca98

9 files changed

+649
-36
lines changed

tur-chromium/chromium-stable/1022-chromium-disable-google-api-warnings.patch

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
--- a/v8/src/wasm/wasm-objects.cc
2+
+++ b/v8/src/wasm/wasm-objects.cc
3+
@@ -11,6 +11,11 @@
4+
#undef MAP_TYPE
5+
#endif // V8_TARGET_OS_LINUX
6+
7+
+#if defined __ANDROID__ && __ANDROID_API__ < 30
8+
+#include <sys/syscall.h>
9+
+#define memfd_create(name,flags) syscall(SYS_memfd_create,name,flags)
10+
+#endif
11+
+
12+
#include "src/wasm/wasm-objects.h"
13+
14+
#include <optional>

tur-chromium/chromium-stable/7002-blink-cxx11-narrowing.patch

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
--- a/base/containers/span.h
2+
+++ b/base/containers/span.h
3+
@@ -785,7 +785,7 @@
4+
template <typename OtherElementType,
5+
size_t OtherExtent,
6+
typename OtherInternalPtrType>
7+
- requires((OtherExtent == dynamic_extent || extent == OtherExtent) &&
8+
+ requires((OtherExtent == dynamic_extent || Extent == OtherExtent) &&
9+
std::equality_comparable_with<const element_type,
10+
const OtherElementType>)
11+
friend constexpr bool operator==(
12+
@@ -820,7 +820,7 @@
13+
template <typename OtherElementType,
14+
size_t OtherExtent,
15+
typename OtherInternalPtrType>
16+
- requires((OtherExtent == dynamic_extent || extent == OtherExtent) &&
17+
+ requires((OtherExtent == dynamic_extent || Extent == OtherExtent) &&
18+
std::three_way_comparable_with<const element_type,
19+
const OtherElementType>)
20+
friend constexpr auto operator<=>(

0 commit comments

Comments
 (0)