diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2018-08-07 13:56:28 +0000 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2018-08-07 13:56:28 +0000 |
commit | 76360496491c8b5323b6655362a2193e36b3d774 (patch) | |
tree | 0a15731855dec4e02e5f3187543ac18c0bceebd0 /www/chromium/files/patch-chrome_common_chrome__features.h | |
parent | Update to 1.14.0. (diff) |
www/chromium: Update to 68.0.3440.84
Changelog: https://chromium.googlesource.com/chromium/src/+log/67.0.3396.87..68.0.3440.84?pretty=fuller&n=10000
At the moment pkg-message says that in order to work around the hanging tabs problem the user may wish to run the following commands:
# [ -d ~{user}/.cache/chromium ] || mkdir ~{user}/.cache/chromium
# echo "md $(echo ~{user})/.cache/chromium mfs rw,late,-w{user}:{group},-s300m 2 0" >> /etc/fstab
# mount ~{user}/.cache/chromium
Add fix-hanging-tabs.sh script to the DATADIR [1], which simplifies the process to just running
/usr/local/share/chromium/fix-hanging-tabs.sh $user $group
PR: 230264 [1]
Submitted by: 0mp [1]
MFH: 2018Q3
Security: http://vuxml.freebsd.org/freebsd/b9c525d9-9198-11e8-beba-080027ef1a23.html
Diffstat (limited to 'www/chromium/files/patch-chrome_common_chrome__features.h')
-rw-r--r-- | www/chromium/files/patch-chrome_common_chrome__features.h | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/www/chromium/files/patch-chrome_common_chrome__features.h b/www/chromium/files/patch-chrome_common_chrome__features.h index 9aa01cd8236c..12669ebbd2ad 100644 --- a/www/chromium/files/patch-chrome_common_chrome__features.h +++ b/www/chromium/files/patch-chrome_common_chrome__features.h @@ -1,17 +1,14 @@ ---- chrome/common/chrome_features.h.orig 2018-06-13 00:10:09.000000000 +0200 -+++ chrome/common/chrome_features.h 2018-07-20 16:34:38.434106000 +0200 -@@ -52,9 +52,9 @@ +--- chrome/common/chrome_features.h.orig 2018-08-01 00:08:33.000000000 +0200 ++++ chrome/common/chrome_features.h 2018-08-05 16:48:04.662112000 +0200 +@@ -52,7 +52,7 @@ extern const base::Feature kAutomaticTabDiscarding; #endif // defined(OS_WIN) || defined(OS_MACOSX) -#if defined(OS_WIN) || defined(OS_LINUX) +#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_BSD) extern const base::Feature kBackgroundModeAllowRestart; --#endif // defined(OS_WIN) || defined(OS_LINUX) -+#endif // defined(OS_WIN) || defined(OS_LINUX) || defined(OS_BSD) + #endif // defined(OS_WIN) || defined(OS_LINUX) - extern const base::Feature kBlockPromptsIfDismissedOften; - extern const base::Feature kBlockPromptsIfIgnoredOften; @@ -76,7 +76,7 @@ extern const base::Feature kTabStripKeyboardFocus; #endif // defined(OS_MACOSX) @@ -21,3 +18,12 @@ extern const base::Feature kCertDualVerificationTrialFeature; #endif +@@ -204,7 +204,7 @@ + extern const base::Feature kAcknowledgeNtpOverrideOnDeactivate; + #endif + +-#if defined(OS_WIN) || (defined(OS_LINUX) && !defined(OS_CHROMEOS)) ++#if defined(OS_WIN) || ((defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS)) + extern const base::Feature kWarnBeforeQuitting; + #endif + |