blob: 22ad4d8d06b004b2e2a3fb95ee359b9d85bde53f [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.
#include "chromeos/ash/components/osauth/impl/prefs.h"
#include "ash/constants/ash_pref_names.h"
#include "components/prefs/pref_registry_simple.h"
namespace ash {
void RegisterPinStoragePrefs(PrefRegistrySimple* registry) {
registry->RegisterStringPref(prefs::kQuickUnlockPinSalt, "");
registry->RegisterStringPref(prefs::kQuickUnlockPinSecret, "");
registry->RegisterIntegerPref(prefs::kQuickUnlockPinFailedAttempts, 0);
}
} // namespace ash