// 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. #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_DATA_MANAGER_TEST_API_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_DATA_MANAGER_TEST_API_H_ #include "base/memory/raw_ref.h" #include "components/autofill/core/browser/payments_data_manager.h" namespace autofill { // Provides testing functions for `PaymentsDataManager`. class PaymentsDataManagerTestApi { … }; inline PaymentsDataManagerTestApi test_api( PaymentsDataManager& payments_data_manager) { … } } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_DATA_MANAGER_TEST_API_H_