Luke Klimek | c7f39d1 | 2025-05-08 15:13:05 | [diff] [blame^] | 1 | // 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 | |
| 9 | void RecordSmartCardOneTimePermissionExpiryReason( |
| 10 | SmartCardOneTimePermissionExpiryReason reason) { |
| 11 | UMA_HISTOGRAM_ENUMERATION("SmartCard.OneTimePermissionExpiryReason", reason, |
| 12 | kSmartCardPermissionExpiredMax); |
| 13 | } |