chromium/chrome/browser/ui/views/web_apps/isolated_web_apps/installability_checker.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_INSTALLABILITY_CHECKER_H_
#define CHROME_BROWSER_UI_VIEWS_WEB_APPS_ISOLATED_WEB_APPS_INSTALLABILITY_CHECKER_H_

#include <memory>
#include <optional>
#include <string>

#include "base/memory/weak_ptr.h"
#include "base/types/expected.h"
#include "chrome/browser/web_applications/isolated_web_apps/check_isolated_web_app_bundle_installability_command.h"
#include "third_party/abseil-cpp/absl/types/variant.h"

class Profile;

namespace base {
class Version;
}  // namespace base

namespace web_app {

class IsolatedWebAppUrlInfo;
class IwaSourceBundleWithMode;
class SignedWebBundleMetadata;
class WebAppProvider;

class InstallabilityChecker {};

}  // namespace web_app

#endif  // CHROME_BROWSER_UI_VIEWS_WEB_APPS_ISOLATED_WEB_APPS_INSTALLABILITY_CHECKER_H_