chromium/components/commerce/core/pref_names.h

// Copyright 2022 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_COMMERCE_CORE_PREF_NAMES_H_
#define COMPONENTS_COMMERCE_CORE_PREF_NAMES_H_

class PrefRegistrySimple;

namespace commerce {

inline constexpr char kCommerceDailyMetricsLastUpdateTime[] =;
inline constexpr char kShoppingListBookmarkLastUpdateTime[] =;

// This setting is primarily for enabling or disabling the shopping list feature
// in enterprise settings.
inline constexpr char kShoppingListEnabledPrefName[] =;

inline constexpr char kPriceEmailNotificationsEnabled[] =;

inline constexpr char kProductSpecificationsEntryPointLastDismissedTime[] =;

inline constexpr char kProductSpecificationsEntryPointShowIntervalInDays[] =;

inline constexpr char kProductSpecificationsAcceptedDisclosureVersion[] =;

// Register preference names for commerce features.
void RegisterPrefs(PrefRegistrySimple* registry);

}  // namespace commerce

#endif  // COMPONENTS_COMMERCE_CORE_PREF_NAMES_H_