From 59201188169f51645159ebb2cf0cd52619915c16 Mon Sep 17 00:00:00 2001 From: Kenny Ballou Date: Sun, 24 Feb 2019 22:49:16 -0700 Subject: Add chromium-72 patches from debian project Collect a number of patches, specifically, `fixes` and `gcc6` patches for compiling chromium-72. [0]: https://salsa.debian.org/chromium-team/chromium/tree/master/debian/patches Signed-off-by: Kenny Ballou --- .../www-client/chromium-72.0.3626.96/gpu-timeout.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 patches/www-client/chromium-72.0.3626.96/gpu-timeout.patch (limited to 'patches/www-client/chromium-72.0.3626.96/gpu-timeout.patch') diff --git a/patches/www-client/chromium-72.0.3626.96/gpu-timeout.patch b/patches/www-client/chromium-72.0.3626.96/gpu-timeout.patch new file mode 100644 index 0000000..3055999 --- /dev/null +++ b/patches/www-client/chromium-72.0.3626.96/gpu-timeout.patch @@ -0,0 +1,15 @@ +description: 10 seconds may not be enough, so don't kill the gpu process until 20. +author: Chad MILLER +bug-debian: http://bugs.debian.org/781940 + +--- a/gpu/ipc/service/gpu_watchdog_thread.cc ++++ b/gpu/ipc/service/gpu_watchdog_thread.cc +@@ -44,7 +44,7 @@ const int kGpuTimeout = 30000; + // infected machines. + const int kGpuTimeout = 15000; + #else +-const int kGpuTimeout = 10000; ++const int kGpuTimeout = 20000; + #endif + + #if defined(USE_X11) -- cgit v1.2.1