From a772e673180283f998c1a1fe0160752acf771734 Mon Sep 17 00:00:00 2001 From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Thu, 12 Oct 2017 08:16:43 +0200 Subject: [PATCH] Disable NTP remote suggestions by default --- .../disable-ntp-remote-suggestions.patch | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 patches/privacy/disable-ntp-remote-suggestions.patch diff --git a/patches/privacy/disable-ntp-remote-suggestions.patch b/patches/privacy/disable-ntp-remote-suggestions.patch new file mode 100644 index 00000000..b63347ee --- /dev/null +++ b/patches/privacy/disable-ntp-remote-suggestions.patch @@ -0,0 +1,30 @@ +commit e1675be76a5ab56335b878dcef50043159efae7a +Author: csagan5 <32685696+csagan5@users.noreply.github.com> +Date: Thu Oct 12 08:15:17 2017 +0200 + + Disable NTP remote suggestions by default + +diff --git a/components/ntp_snippets/features.cc b/components/ntp_snippets/features.cc +index 31823bbc..82eefe3 100644 +--- a/components/ntp_snippets/features.cc ++++ b/components/ntp_snippets/features.cc +@@ -38,16 +38,16 @@ const base::Feature* const kAllFeatures[] = { + nullptr}; + + const base::Feature kArticleSuggestionsFeature{ +- "NTPArticleSuggestions", base::FEATURE_ENABLED_BY_DEFAULT}; ++ "NTPArticleSuggestions", base::FEATURE_DISABLED_BY_DEFAULT}; + + const base::Feature kBookmarkSuggestionsFeature{ +- "NTPBookmarkSuggestions", base::FEATURE_ENABLED_BY_DEFAULT}; ++ "NTPBookmarkSuggestions", base::FEATURE_DISABLED_BY_DEFAULT}; + + const base::Feature kRecentOfflineTabSuggestionsFeature{ + "NTPOfflinePageSuggestions", base::FEATURE_DISABLED_BY_DEFAULT}; + + const base::Feature kIncreasedVisibility{"NTPSnippetsIncreasedVisibility", +- base::FEATURE_ENABLED_BY_DEFAULT}; ++ base::FEATURE_DISABLED_BY_DEFAULT}; + + const base::Feature kPhysicalWebPageSuggestionsFeature{ + "NTPPhysicalWebPageSuggestions", base::FEATURE_DISABLED_BY_DEFAULT};