// Copyright 2019 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/payments/content/payment_event_response_util.h" #include <string_view> #include "components/payments/core/error_strings.h" #include "components/payments/core/native_error_strings.h" namespace payments { std::string_view ConvertCanMakePaymentEventResponseTypeToErrorString( mojom::CanMakePaymentEventResponseType response_type) { … } std::string_view ConvertPaymentEventResponseTypeToErrorString( mojom::PaymentEventResponseType response_type) { … } } // namespace payments