// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PAYMENTS_CORE_PAYMENT_RESPONSE_H_ #define COMPONENTS_PAYMENTS_CORE_PAYMENT_RESPONSE_H_ #include <memory> #include <string> #include "components/payments/mojom/payment_request_data.mojom.h" // C++ bindings for the PaymentRequest API PaymentResponse. Conforms to the // following spec: // https://www.w3.org/TR/payment-request/#paymentresponse-interface namespace payments { // Information provided in the Promise returned by a call to // PaymentRequest.show(). class PaymentResponse { … }; } // namespace payments #endif // COMPONENTS_PAYMENTS_CORE_PAYMENT_RESPONSE_H_