blob: 628ed7c380a986e206b92894cbb72f825136ed7d [file] [log] [blame]
Kristi Park01ca1252019-05-10 22:39:051// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef COMPONENTS_NTP_TILES_FEATURES_H_
6#define COMPONENTS_NTP_TILES_FEATURES_H_
7
8namespace base {
9struct Feature;
10} // namespace base
11
12namespace ntp_tiles {
13
14// Name of the field trial to configure PopularSites.
15extern const char kPopularSitesFieldTrialName[];
16
17// This feature is enabled by default. Otherwise, users who need it would not
18// get the right configuration timely enough. The configuration affects only
19// Android or iOS users.
20extern const base::Feature kPopularSitesBakedInContentFeature;
21
22// Feature to allow the new Google favicon server for fetching favicons for Most
23// Likely tiles on the New Tab Page.
24extern const base::Feature kNtpMostLikelyFaviconsFromServerFeature;
25
26// If this feature is enabled, we enable popular sites in the suggestions UI.
27extern const base::Feature kUsePopularSitesSuggestions;
28
Justin DeWitt03ae1bd2019-09-10 22:39:5129// If this feature is enabled, we use the remote service to populate suggestions
30// tiles.
31extern const base::Feature kDisplaySuggestionsServiceTiles;
32
Kristi Park01ca1252019-05-10 22:39:0533} // namespace ntp_tiles
34
35#endif // COMPONENTS_NTP_TILES_FEATURES_H_