chromium/chrome/browser/password_manager/web_app_profile_switcher.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_PASSWORD_MANAGER_WEB_APP_PROFILE_SWITCHER_H_
#define CHROME_BROWSER_PASSWORD_MANAGER_WEB_APP_PROFILE_SWITCHER_H_

#include "base/scoped_multi_source_observation.h"
#include "base/values.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_observer.h"
#include "components/webapps/common/web_app_id.h"

namespace webapps {
enum class InstallResultCode;
}  // namespace webapps

namespace web_app {
class AppLock;
struct IconBitmaps;
}  // namespace web_app

// A class that can open a web app with the specified |app_id|, that is
// already installed for |active_profile|, for other profiles.
class WebAppProfileSwitcher : public ProfileObserver {};

#endif  // CHROME_BROWSER_PASSWORD_MANAGER_WEB_APP_PROFILE_SWITCHER_H_