Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame] | 1 | // Copyright 2019 The Chromium Authors |
Kristi Park | 01ca125 | 2019-05-10 22:39:05 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "components/ntp_tiles/features.h" |
| 6 | |
| 7 | #include "base/feature_list.h" |
Justin DeWitt | 03ae1bd | 2019-09-10 22:39:51 | [diff] [blame] | 8 | #include "build/build_config.h" |
Kristi Park | 01ca125 | 2019-05-10 22:39:05 | [diff] [blame] | 9 | #include "ui/base/ui_base_features.h" |
| 10 | |
| 11 | namespace ntp_tiles { |
| 12 | |
| 13 | const char kPopularSitesFieldTrialName[] = "NTPPopularSites"; |
| 14 | |
| 15 | const base::Feature kPopularSitesBakedInContentFeature{ |
| 16 | "NTPPopularSitesBakedInContent", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 17 | |
| 18 | const base::Feature kNtpMostLikelyFaviconsFromServerFeature{ |
| 19 | "NTPMostLikelyFaviconsFromServer", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 20 | |
| 21 | const base::Feature kUsePopularSitesSuggestions{ |
| 22 | "UsePopularSitesSuggestions", base::FEATURE_ENABLED_BY_DEFAULT}; |
| 23 | |
Kristi Park | 01ca125 | 2019-05-10 22:39:05 | [diff] [blame] | 24 | } // namespace ntp_tiles |