32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Thu, 12 Oct 2017 08:15:17 +0200
|
|
Subject: Disable NTP remote suggestions by default
|
|
|
|
---
|
|
components/ntp_snippets/features.cc | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/components/ntp_snippets/features.cc b/components/ntp_snippets/features.cc
|
|
--- a/components/ntp_snippets/features.cc
|
|
+++ b/components/ntp_snippets/features.cc
|
|
@@ -34,13 +34,13 @@ const base::Feature* const kAllFeatures[] = {
|
|
&kRemoteSuggestionsBackendFeature};
|
|
|
|
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 kIncreasedVisibility{"NTPSnippetsIncreasedVisibility",
|
|
- base::FEATURE_ENABLED_BY_DEFAULT};
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
const base::Feature kBreakingNewsPushFeature{"BreakingNewsPush",
|
|
base::FEATURE_DISABLED_BY_DEFAULT};
|
|
--
|
|
2.11.0
|
|
|