chromium/chrome/browser/ui/fast_checkout/fast_checkout_controller_impl.h

// Copyright 2022 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_FAST_CHECKOUT_FAST_CHECKOUT_CONTROLLER_IMPL_H_
#define CHROME_BROWSER_UI_FAST_CHECKOUT_FAST_CHECKOUT_CONTROLLER_IMPL_H_

#include "chrome/browser/ui/fast_checkout/fast_checkout_controller.h"

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/fast_checkout/fast_checkout_view.h"
#include "ui/gfx/native_widget_types.h"

namespace content {
class WebContents;
}  // namespace content

// The controller acts as C++ entry point to Fast Checkout UI. It provides
// clients all necessary directives to communicate back and forth with the
// bottom sheet.
class FastCheckoutControllerImpl : public FastCheckoutController {};
#endif  // CHROME_BROWSER_UI_FAST_CHECKOUT_FAST_CHECKOUT_CONTROLLER_IMPL_H_