blob: c14ff7a0dd00f23a2c217657024c4cdf8cc2a9db [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
15const base::Feature kPopularSitesBakedInContentFeature{
16 "NTPPopularSitesBakedInContent", base::FEATURE_ENABLED_BY_DEFAULT};
17
18const base::Feature kNtpMostLikelyFaviconsFromServerFeature{
19 "NTPMostLikelyFaviconsFromServer", base::FEATURE_ENABLED_BY_DEFAULT};
20
21const base::Feature kUsePopularSitesSuggestions{
22 "UsePopularSitesSuggestions", base::FEATURE_ENABLED_BY_DEFAULT};
23
Kristi Park01ca1252019-05-10 22:39:0524} // namespace ntp_tiles