47 lines
2 KiB
Diff
47 lines
2 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/feed/core/shared_prefs/pref_names.cc | 4 ++--
|
|
components/ntp_snippets/features.cc | 4 ++--
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/components/feed/core/shared_prefs/pref_names.cc b/components/feed/core/shared_prefs/pref_names.cc
|
|
--- a/components/feed/core/shared_prefs/pref_names.cc
|
|
+++ b/components/feed/core/shared_prefs/pref_names.cc
|
|
@@ -19,8 +19,8 @@ const char kEnableSnippets[] = "ntp_snippets.enable";
|
|
const char kArticlesListVisible[] = "ntp_snippets.list_visible";
|
|
|
|
void RegisterFeedSharedProfilePrefs(PrefRegistrySimple* registry) {
|
|
- registry->RegisterBooleanPref(kEnableSnippets, true);
|
|
- registry->RegisterBooleanPref(kArticlesListVisible, true);
|
|
+ registry->RegisterBooleanPref(kEnableSnippets, false);
|
|
+ registry->RegisterBooleanPref(kArticlesListVisible, false);
|
|
}
|
|
|
|
} // namespace prefs
|
|
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
|
|
@@ -39,7 +39,7 @@ const base::Feature* const kAllFeatures[] = {
|
|
&kOptionalImagesEnabledFeature};
|
|
|
|
const base::Feature kArticleSuggestionsFeature{
|
|
- "NTPArticleSuggestions", base::FEATURE_ENABLED_BY_DEFAULT};
|
|
+ "NTPArticleSuggestions", base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
const base::Feature kRemoteSuggestionsEmulateM58FetchingSchedule{
|
|
"RemoteSuggestionsEmulateM58FetchingSchedule",
|
|
@@ -69,7 +69,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 kOptionalImagesEnabledFeature{
|
|
"NTPRemoteSuggestionsOptionalImages", base::FEATURE_ENABLED_BY_DEFAULT};
|
|
--
|
|
2.17.1
|
|
|