chromium/chrome/browser/ui/views/autofill/payments/payments_window_user_consent_dialog_view.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 CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_PAYMENTS_WINDOW_USER_CONSENT_DIALOG_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_PAYMENTS_WINDOW_USER_CONSENT_DIALOG_VIEW_H_

#include "base/memory/raw_ptr.h"
#include "components/autofill/core/browser/ui/payments/payments_window_user_consent_dialog.h"
#include "components/autofill/core/browser/ui/payments/payments_window_user_consent_dialog_controller.h"
#include "ui/views/window/dialog_delegate.h"

namespace autofill::payments {

class PaymentsWindowUserConsentDialogController;

// The Desktop native views implementation for PaymentsWindowUserConsentDialog.
// This is owned by the view hierarchy.
class PaymentsWindowUserConsentDialogView
    : public PaymentsWindowUserConsentDialog,
      public views::DialogDelegateView {};

}  // namespace autofill::payments

#endif  // CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_PAYMENTS_WINDOW_USER_CONSENT_DIALOG_VIEW_H_