chromium/chrome/browser/ui/views/autofill/payments/card_unmask_otp_input_dialog_views.h

// Copyright 2021 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_CARD_UNMASK_OTP_INPUT_DIALOG_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_CARD_UNMASK_OTP_INPUT_DIALOG_VIEWS_H_

#include "components/autofill/core/browser/ui/payments/card_unmask_otp_input_dialog_view.h"

#include <string>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "ui/views/controls/styled_label.h"
#include "ui/views/controls/textfield/textfield_controller.h"
#include "ui/views/window/dialog_delegate.h"

namespace views {
class BoxLayoutView;
class Label;
class Throbber;
}  // namespace views

namespace autofill {

class CardUnmaskOtpInputDialogController;

class CardUnmaskOtpInputDialogViews : public CardUnmaskOtpInputDialogView,
                                      public views::DialogDelegateView,
                                      public views::TextfieldController {};

}  // namespace autofill

#endif  // CHROME_BROWSER_UI_VIEWS_AUTOFILL_PAYMENTS_CARD_UNMASK_OTP_INPUT_DIALOG_VIEWS_H_