#include "components/payments/core/error_message_util.h"
#include <vector>
#include "base/check.h"
#include "base/ranges/algorithm.h"
#include "base/strings/string_util.h"
#include "components/payments/core/error_strings.h"
#include "components/payments/core/native_error_strings.h"
namespace payments {
namespace {
template <class Collection>
std::string concatNamesWithQuotesAndCommma(const Collection& names) { … }
}
std::string GetNotSupportedErrorMessage(const std::set<std::string>& methods) { … }
std::string GetAppsSkippedForPartialDelegationErrorMessage(
const std::vector<std::string>& skipped_app_names) { … }
}