// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_VIRTUAL_CARD_ENROLL_METRICS_LOGGER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_VIRTUAL_CARD_ENROLL_METRICS_LOGGER_H_ #include "components/autofill/core/browser/metrics/payments/virtual_card_enrollment_metrics.h" namespace autofill { // Logs metrics related to the virtual card enrollment. class VirtualCardEnrollMetricsLogger { … }; // Returns an equivalent // VirtualCardEnrollmentBubbleSource for the given // VirtualCardEnrollmentSource. VirtualCardEnrollmentBubbleSource ConvertToVirtualCardEnrollmentBubbleSource( VirtualCardEnrollmentSource enrollment_source); } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_VIRTUAL_CARD_ENROLL_METRICS_LOGGER_H_