#ifndef CHROME_BROWSER_UI_WEB_APPLICATIONS_WEB_APP_UI_MANAGER_IMPL_H_
#define CHROME_BROWSER_UI_WEB_APPLICATIONS_WEB_APP_UI_MANAGER_IMPL_H_
#include <stddef.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/scoped_multi_source_observation.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/ui/browser_list_observer.h"
#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
#include "chrome/browser/web_applications/web_app_callback_app_identity.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "chrome/browser/web_applications/web_app_ui_manager.h"
#include "chrome/browser/web_applications/web_app_uninstall_dialog_user_options.h"
#include "components/webapps/common/web_app_id.h"
#include "content/public/browser/web_contents.h"
#include "ui/gfx/native_widget_types.h"
class Browser;
class BrowserWindow;
class Profile;
class SkBitmap;
namespace apps {
struct AppLaunchParams;
}
namespace base {
class FilePath;
}
namespace views {
class NativeWindowTracker;
}
namespace webapps {
enum class WebappUninstallSource;
}
namespace web_app {
class IsolatedWebAppInstallerCoordinator;
class WithAppResources;
class WebAppUiManagerImpl : public BrowserListObserver,
public WebAppUiManager,
public TabStripModelObserver { … };
}
#endif