blob: 8bf84bc670aaf7028643d38b664e2078567e460e [file] [log] [blame]
Luke Klimekc7f39d12025-05-08 15:13:051// Copyright 2025 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/smart_card/smart_card_histograms.h"
6
7#include "base/metrics/histogram_macros.h"
8
9void RecordSmartCardOneTimePermissionExpiryReason(
10 SmartCardOneTimePermissionExpiryReason reason) {
11 UMA_HISTOGRAM_ENUMERATION("SmartCard.OneTimePermissionExpiryReason", reason,
12 kSmartCardPermissionExpiredMax);
13}