chromium/components/autofill/core/browser/payments_data_manager_test_api.cc

// 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 "components/autofill/core/browser/payments_data_manager_test_api.h"

#include "components/autofill/core/browser/data_model/credit_card_art_image.h"

namespace autofill {

void PaymentsDataManagerTestApi::AddServerCreditCard(
    const CreditCard& credit_card) {}

void PaymentsDataManagerTestApi::AddOfferData(
    std::unique_ptr<AutofillOfferData> offer_data) {}

void PaymentsDataManagerTestApi::OnCardArtImagesFetched(
    std::vector<std::unique_ptr<CreditCardArtImage>> images) {}

bool PaymentsDataManagerTestApi::ShouldSuggestServerPaymentMethods() {}

}  // namespace autofill