// Copyright 2022 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_AUTOFILL_WALLET_USAGE_DATA_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_AUTOFILL_WALLET_USAGE_DATA_H_ #include <string> #include <vector> #include "base/types/strong_alias.h" #include "url/origin.h" namespace autofill { // Usage data information related to a virtual card. class VirtualCardUsageData { … }; // Contains various information related to the usages of a specific payment // method on a individual merchant website or app. Wallet highlights that this // class is only relevant to payment data. class AutofillWalletUsageData { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_DATA_MODEL_AUTOFILL_WALLET_USAGE_DATA_H_