diff --git a/build/patches/Disable-feeds-support-by-default.patch b/build/patches/Disable-feeds-support-by-default.patch index 16e213354..48459cfad 100644 --- a/build/patches/Disable-feeds-support-by-default.patch +++ b/build/patches/Disable-feeds-support-by-default.patch @@ -161,18 +161,12 @@ diff --git a/components/feed/core/shared_prefs/pref_names.cc b/components/feed/c diff --git a/components/feed/feed_feature_list.cc b/components/feed/feed_feature_list.cc --- a/components/feed/feed_feature_list.cc +++ b/components/feed/feed_feature_list.cc -@@ -155,10 +155,13 @@ BASE_FEATURE(kWebFeedKillSwitch, - base::FEATURE_DISABLED_BY_DEFAULT); - - bool IsWebFeedEnabledForLocale(const std::string& country) { -+ if ((true)) return false; - const std::vector launched_countries = {"AU", "CA", "GB", - "NZ", "US", "ZA"}; - return base::Contains(launched_countries, country) && +@@ -161,4 +161,7 @@ bool IsWebFeedEnabledForLocale(const std::string& country) { !base::FeatureList::IsEnabled(kWebFeedKillSwitch); } +SET_CROMITE_FEATURE_DISABLED(kInterestFeedV2); ++SET_CROMITE_FEATURE_ENABLED(kWebFeedKillSwitch); + } // namespace feed --