#include "ash/edusumer/graduation_prefs.h"
#include "ash/constants/ash_pref_names.h"
#include "base/time/time.h"
#include "components/prefs/pref_registry_simple.h"
namespace ash::graduation_prefs {
void RegisterProfilePrefs(PrefRegistrySimple* registry) {
registry->RegisterDictionaryPref(prefs::kGraduationEnablementStatus);
registry->RegisterIntegerPref(prefs::kGraduationNudgeShownCount,
0);
registry->RegisterTimePref(prefs::kGraduationNudgeLastShownTime,
base::Time());
registry->RegisterBooleanPref(prefs::kGraduationNudgeShownDeprecated, false);
}
}