// 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_METHOD_DATA_H_ #define COMPONENTS_PAYMENTS_CORE_PAYMENT_METHOD_DATA_H_ #include <memory> #include <set> #include <string> #include <vector> #include "base/values.h" #include "components/autofill/core/browser/data_model/credit_card.h" namespace base { class Value; } namespace payments { // A set of supported payment methods and any associated payment method specific // data for those methods. class PaymentMethodData { … }; } // namespace payments #endif // COMPONENTS_PAYMENTS_CORE_PAYMENT_METHOD_DATA_H_