summaryrefslogtreecommitdiff
path: root/www-client/chromium/files
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/chromium/files')
-rw-r--r--www-client/chromium/files/chromium-96-command_line-include.patch12
-rw-r--r--www-client/chromium/files/chromium-96-drm_render_node_path_finder-include.patch12
-rw-r--r--www-client/chromium/files/chromium-96-restricted_cookie_manager-pair.patch13
3 files changed, 37 insertions, 0 deletions
diff --git a/www-client/chromium/files/chromium-96-command_line-include.patch b/www-client/chromium/files/chromium-96-command_line-include.patch
new file mode 100644
index 0000000..576943b
--- /dev/null
+++ b/www-client/chromium/files/chromium-96-command_line-include.patch
@@ -0,0 +1,12 @@
+diff --git a/base/command_line.h b/base/command_line.h
+index 706726a73..ad0281283 100644
+--- a/base/command_line.h
++++ b/base/command_line.h
+@@ -19,6 +19,7 @@
+ #include <stddef.h>
+ #include <functional>
+ #include <map>
++#include <memory>
+ #include <string>
+ #include <vector>
+
diff --git a/www-client/chromium/files/chromium-96-drm_render_node_path_finder-include.patch b/www-client/chromium/files/chromium-96-drm_render_node_path_finder-include.patch
new file mode 100644
index 0000000..2e94f33
--- /dev/null
+++ b/www-client/chromium/files/chromium-96-drm_render_node_path_finder-include.patch
@@ -0,0 +1,12 @@
+diff --git a/ui/ozone/platform/wayland/gpu/drm_render_node_path_finder.cc b/ui/ozone/platform/wayland/gpu/drm_render_node_path_finder.cc
+index 06776a7af..d5b7b71a5 100644
+--- a/ui/ozone/platform/wayland/gpu/drm_render_node_path_finder.cc
++++ b/ui/ozone/platform/wayland/gpu/drm_render_node_path_finder.cc
+@@ -5,6 +5,7 @@
+ #include "ui/ozone/platform/wayland/gpu/drm_render_node_path_finder.h"
+
+ #include <fcntl.h>
++#include <string.h>
+ #include <sys/stat.h>
+ #include <sys/types.h>
+ #include <unistd.h>
diff --git a/www-client/chromium/files/chromium-96-restricted_cookie_manager-pair.patch b/www-client/chromium/files/chromium-96-restricted_cookie_manager-pair.patch
new file mode 100644
index 0000000..bd372e1
--- /dev/null
+++ b/www-client/chromium/files/chromium-96-restricted_cookie_manager-pair.patch
@@ -0,0 +1,13 @@
+diff --git a/services/network/restricted_cookie_manager.cc b/services/network/restricted_cookie_manager.cc
+index 425426fd5..c8c10c65a 100644
+--- a/services/network/restricted_cookie_manager.cc
++++ b/services/network/restricted_cookie_manager.cc
+@@ -161,7 +161,7 @@ CookieAccesses* RestrictedCookieManager::GetCookieAccessesForURLAndSite(
+ const GURL& url,
+ const net::SiteForCookies& site_for_cookies) {
+ std::unique_ptr<CookieAccesses>& entry =
+- recent_cookie_accesses_[std::tie(url, site_for_cookies)];
++ recent_cookie_accesses_[std::make_pair(url, site_for_cookies)];
+ if (!entry) {
+ entry = std::make_unique<CookieAccesses>();
+ }