chromium/components/payments/content/secure_payment_confirmation_controller.h

// Copyright 2020 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_PAYMENTS_CONTENT_SECURE_PAYMENT_CONFIRMATION_CONTROLLER_H_
#define COMPONENTS_PAYMENTS_CONTENT_SECURE_PAYMENT_CONFIRMATION_CONTROLLER_H_

#include "base/memory/weak_ptr.h"
#include "components/payments/content/initialization_task.h"
#include "components/payments/content/payment_request_dialog.h"
#include "components/payments/content/secure_payment_confirmation_model.h"
#include "components/payments/content/secure_payment_confirmation_view.h"

namespace payments {

class PaymentRequest;

// Controls the user interface in the secure payment confirmation flow.
class SecurePaymentConfirmationController
    : public PaymentRequestDialog,
      public InitializationTask::Observer {};

}  // namespace payments

#endif  // COMPONENTS_PAYMENTS_CONTENT_SECURE_PAYMENT_CONFIRMATION_CONTROLLER_H_