chromium/components/ntp_tiles/pref_names.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_NTP_TILES_PREF_NAMES_H_
#define COMPONENTS_NTP_TILES_PREF_NAMES_H_

namespace ntp_tiles::prefs {

// The number of personal tiles we had previously. Used to figure out
// whether we need popular sites.
inline constexpr char kNumPersonalTiles[] =;

// If set, overrides the URL for popular sites, including the individual
// overrides for country and version below.
inline constexpr char kPopularSitesOverrideURL[] =;

// If set, this will override the URL path directory for popular sites.
inline constexpr char kPopularSitesOverrideDirectory[] =;

// If set, this will override the country detection for popular sites.
inline constexpr char kPopularSitesOverrideCountry[] =;

// If set, this will override the default file version for popular sites.
inline constexpr char kPopularSitesOverrideVersion[] =;

// Prefs used to cache suggested sites and store caching meta data.
inline constexpr char kPopularSitesLastDownloadPref[] =;
inline constexpr char kPopularSitesURLPref[] =;
inline constexpr char kPopularSitesJsonPref[] =;
inline constexpr char kPopularSitesVersionPref[] =;

// Prefs used to cache custom links.
inline constexpr char kCustomLinksList[] =;
inline constexpr char kCustomLinksInitialized[] =;

// Pref used to verify whether custom links have been removed
// for preinstalled default chrome apps
inline constexpr char kCustomLinksForPreinstalledAppsRemoved[] =;

}  // namespace ntp_tiles::prefs

#endif  // COMPONENTS_NTP_TILES_PREF_NAMES_H_