33 lines
1.3 KiB
Diff
33 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 | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 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
|
|
@@ -41,7 +41,7 @@ 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 kRemoteSuggestionsEmulateM58FetchingSchedule{
|
|
"RemoteSuggestionsEmulateM58FetchingSchedule",
|
|
@@ -71,7 +71,7 @@ const char kNotificationsDailyLimit[] = "daily_limit";
|
|
const char kNotificationsIgnoredLimitParam[] = "ignored_limit";
|
|
|
|
const base::Feature kKeepPrefetchedContentSuggestions{
|
|
- "KeepPrefetchedContentSuggestions", base::FEATURE_ENABLED_BY_DEFAULT};
|
|
+ "KeepPrefetchedContentSuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
const base::Feature kContentSuggestionsDebugLog{
|
|
"ContentSuggestionsDebugLog", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
--
|
|
2.11.0
|
|
|