chromium/components/autofill/core/browser/ui/payments/autofill_progress_dialog_controller_impl.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 COMPONENTS_AUTOFILL_CORE_BROWSER_UI_PAYMENTS_AUTOFILL_PROGRESS_DIALOG_CONTROLLER_IMPL_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_PAYMENTS_AUTOFILL_PROGRESS_DIALOG_CONTROLLER_IMPL_H_

#include <string>

#include "base/functional/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "components/autofill/core/browser/autofill_progress_dialog_type.h"
#include "components/autofill/core/browser/ui/payments/autofill_progress_dialog_controller.h"
#include "components/autofill/core/browser/ui/payments/autofill_progress_dialog_view.h"

namespace autofill {

enum class AutofillProgressDialogType;

// Implementation of the AutofillProgressDialogController. This class shows a
// progress bar with a cancel button that can be updated to a success state
// (check mark). The controller is destroyed once the view is dismissed.
class AutofillProgressDialogControllerImpl
    : public AutofillProgressDialogController {};

}  // namespace autofill

#endif  // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_PAYMENTS_AUTOFILL_PROGRESS_DIALOG_CONTROLLER_IMPL_H_