blob: d35052b2fec1cca99b8f0c6c4aa2fdb5b9dd68a8 [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361// Copyright 2019 The Chromium Authors
Kristi Park01ca1252019-05-10 22:39:052// 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 DeWitt03ae1bd2019-09-10 22:39:518#include "build/build_config.h"
Kristi Park01ca1252019-05-10 22:39:059#include "ui/base/ui_base_features.h"
10
11namespace ntp_tiles {
12
13const char kPopularSitesFieldTrialName[] = "NTPPopularSites";
14
Daniel Cheng11f342f2022-09-27 23:23:3515BASE_FEATURE(kPopularSitesBakedInContentFeature,
16 "NTPPopularSitesBakedInContent",
17 base::FEATURE_ENABLED_BY_DEFAULT);
Kristi Park01ca1252019-05-10 22:39:0518
Daniel Cheng11f342f2022-09-27 23:23:3519BASE_FEATURE(kNtpMostLikelyFaviconsFromServerFeature,
20 "NTPMostLikelyFaviconsFromServer",
21 base::FEATURE_ENABLED_BY_DEFAULT);
Kristi Park01ca1252019-05-10 22:39:0522
Daniel Cheng11f342f2022-09-27 23:23:3523BASE_FEATURE(kUsePopularSitesSuggestions,
24 "UsePopularSitesSuggestions",
25 base::FEATURE_ENABLED_BY_DEFAULT);
Kristi Park01ca1252019-05-10 22:39:0526
Kristi Park01ca1252019-05-10 22:39:0527} // namespace ntp_tiles