#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_TEST_AUTHENTICATION_REQUESTER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_TEST_AUTHENTICATION_REQUESTER_H_
#include <string>
#include "build/build_config.h"
#include "components/autofill/core/browser/payments/credit_card_cvc_authenticator.h"
#include "components/autofill/core/browser/payments/credit_card_otp_authenticator.h"
#include "components/autofill/core/browser/payments/credit_card_risk_based_authenticator.h"
#include "components/autofill/core/browser/payments/full_card_request.h"
#include "components/autofill/core/browser/payments/payments_autofill_client.h"
#if !BUILDFLAG(IS_IOS)
#include "components/autofill/core/browser/payments/credit_card_fido_authenticator.h"
#endif
namespace autofill {
#if BUILDFLAG(IS_IOS)
class TestAuthenticationRequester
: public CreditCardCvcAuthenticator::Requester,
public CreditCardOtpAuthenticator::Requester,
public CreditCardRiskBasedAuthenticator::Requester {
#else
class TestAuthenticationRequester
: public CreditCardCvcAuthenticator::Requester,
public CreditCardFidoAuthenticator::Requester,
public CreditCardOtpAuthenticator::Requester,
public CreditCardRiskBasedAuthenticator::Requester { … };
}
#endif