chromium/components/autofill/core/browser/data_model/payments_metadata.h

// Copyright 2018 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_AUTOFILL_CORE_BROWSER_DATA_MODEL_PAYMENTS_METADATA_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_PAYMENTS_METADATA_H_

#include <string>

#include "base/time/time.h"

namespace autofill {

class AutofillDataModel;

// This struct contains the metadata of a payments model. It is used to abstract
// the data from the metadata.
struct PaymentsMetadata {};

// So we can compare PaymentsMetadata with EXPECT_EQ().
std::ostream& operator<<(std::ostream& os, const PaymentsMetadata& metadata);

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_PAYMENTS_METADATA_H_