#ifndef COMPONENTS_PAYMENTS_CORE_STRINGS_UTIL_H_
#define COMPONENTS_PAYMENTS_CORE_STRINGS_UTIL_H_
#include <set>
#include <string>
#include "build/build_config.h"
#include "components/autofill/core/browser/data_model/credit_card.h"
#include "components/payments/core/payment_options_provider.h"
namespace autofill {
class AutofillProfile;
}
namespace payments {
std::u16string GetShippingAddressLabelFromAutofillProfile(
const autofill::AutofillProfile& profile,
const std::string& locale);
std::u16string GetShippingAddressSelectorInfoMessage(
PaymentShippingType shipping_type);
std::u16string GetShippingAddressSectionString(
PaymentShippingType shipping_type);
std::u16string GetShippingOptionSectionString(
PaymentShippingType shipping_type);
}
#endif