- Use https in WWW and MASTER_SITES - Sort ONLY_FOR_ARCHS, USES, USE_GNOME and GN_ARGS - Put in correct place MAKE_ENV+= V=1 variable - Use LLD linker by default for supported archs - Fix DEBUG option - Fix gpu_info_collector.cc warning: control may reach end of non-void function [-Wreturn-type] - Get rid of multiple definition errors Changelog: https://chromium.googlesource.com/chromium/src/+log/58.0.3029.110..59.0.3071.104?pretty=fuller&n=10000 MFH: 2017Q2 Security: https://www.vuxml.org/freebsd/52f4b48b-4ac3-11e7-99aa-e8e0b747a45a.html Security: https://www.vuxml.org/freebsd/f53dd5cc-527f-11e7-a772-e8e0b747a45a.html
29 lines
1.5 KiB
C++
29 lines
1.5 KiB
C++
--- chrome/common/pref_names.cc.orig 2017-06-05 19:03:03 UTC
|
|
+++ chrome/common/pref_names.cc
|
|
@@ -1009,7 +1009,7 @@ const char kForceSessionSync[] = "settings.history_rec
|
|
// only using an account that belongs to one of the domains from this pref.
|
|
const char kAllowedDomainsForApps[] = "settings.allowed_domains_for_apps";
|
|
|
|
-#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
|
+#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS)
|
|
// Linux specific preference on whether we should match the system theme.
|
|
const char kUsesSystemTheme[] = "extensions.theme.use_system";
|
|
#endif
|
|
@@ -1096,7 +1096,7 @@ const char kShowUpdatePromotionInfoBar[] =
|
|
"browser.show_update_promotion_info_bar";
|
|
#endif
|
|
|
|
-#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
|
+#if (defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS)
|
|
// Boolean that is false if we should show window manager decorations. If
|
|
// true, we draw a custom chrome frame (thicker title bar and blue border).
|
|
const char kUseCustomChromeFrame[] = "browser.custom_chrome_frame";
|
|
@@ -1475,7 +1475,7 @@ const char kDownloadDefaultDirectory[] = "download.def
|
|
// upgrade a unsafe location to a safe location.
|
|
const char kDownloadDirUpgraded[] = "download.directory_upgrade";
|
|
|
|
-#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX)
|
|
+#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_BSD)
|
|
const char kOpenPdfDownloadInSystemReader[] =
|
|
"download.open_pdf_in_system_reader";
|
|
#endif
|