chromium/components/autofill/core/browser/ui/payments/save_payment_method_and_virtual_card_enroll_confirmation_ui_params.h

// Copyright 2024 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_UI_PAYMENTS_SAVE_PAYMENT_METHOD_AND_VIRTUAL_CARD_ENROLL_CONFIRMATION_UI_PARAMS_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_PAYMENTS_SAVE_PAYMENT_METHOD_AND_VIRTUAL_CARD_ENROLL_CONFIRMATION_UI_PARAMS_H_

#include <string>

namespace autofill {

// The UI params for both the Save Card/IBAN and Virtual Card Enrollment
// confirmation dialogs. Since both dialogs have the same basic structure
// (title, description, and success/failure state), they share UI params to
// avoid code duplication.
struct SavePaymentMethodAndVirtualCardEnrollConfirmationUiParams {};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_PAYMENTS_SAVE_PAYMENT_METHOD_AND_VIRTUAL_CARD_ENROLL_CONFIRMATION_UI_PARAMS_H_