blob: af12e84a8a7174d8729bae46a1a7e39373acd8bd [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_PREF_NAMES_H_
#define CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_PREF_NAMES_H_
namespace prefs {
// Dictionary pref to store the number of times a user declined profile creation
// per account. The key is the hash of the email.
inline constexpr char kProfileCreationInterceptionDeclined[] =
"signin.ProfileCreationInterceptionDeclinedPref";
// Integer pref to store the number of times the password bubble signin promo
// has been shown per profile while the user is signed out.
inline constexpr char kPasswordSignInPromoShownCountPerProfile[] =
"signin.PasswordSignInPromoShownCount";
// Integer pref to store the number of times the address bubble signin promo
// has been shown per profile while the user is signed out.
inline constexpr char kAddressSignInPromoShownCountPerProfile[] =
"signin.AddressSignInPromoShownCount";
// Integer pref to store the number of times any autofill bubble signin promo
// has been dismissed per profile while the user is signed out.
inline constexpr char kAutofillSignInPromoDismissCountPerProfile[] =
"signin.AutofillSignInPromoDismissCount";
} // namespace prefs
#endif // CHROME_BROWSER_SIGNIN_CHROME_SIGNIN_PREF_NAMES_H_