chromium/chrome/browser/ui/views/web_apps/isolated_web_apps/isolated_web_app_installer_view_impl.h

// Copyright 2023 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_WEB_APPS_ISOLATED_WEB_APPS_ISOLATED_WEB_APP_INSTALLER_VIEW_IMPL_H_
#define CHROME_BROWSER_UI_VIEWS_WEB_APPS_ISOLATED_WEB_APPS_ISOLATED_WEB_APP_INSTALLER_VIEW_IMPL_H_

#include <memory>
#include <optional>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/views/web_apps/isolated_web_apps/isolated_web_app_installer_model.h"
#include "chrome/browser/ui/views/web_apps/isolated_web_apps/isolated_web_app_installer_view.h"
#include "ui/base/metadata/metadata_header_macros.h"

namespace gfx {
class Size;
}  // namespace gfx

namespace ui {
class DialogModelLabel;
class ImageModel;
}  // namespace ui

namespace views {
class Widget;
}  // namespace views

namespace web_app {

class DisabledView;
class GetMetadataView;
class InstallView;
class InstallSuccessView;
class ShowMetadataView;
class SignedWebBundleMetadata;

class IsolatedWebAppInstallerViewImpl : public IsolatedWebAppInstallerView {};

}  // namespace web_app

#endif  // CHROME_BROWSER_UI_VIEWS_WEB_APPS_ISOLATED_WEB_APPS_ISOLATED_WEB_APP_INSTALLER_VIEW_IMPL_H_