chromium/chrome/browser/ui/views/web_apps/launch_app_user_choice_dialog_view.h

// Copyright 2021 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_LAUNCH_APP_USER_CHOICE_DIALOG_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_WEB_APPS_LAUNCH_APP_USER_CHOICE_DIALOG_VIEW_H_

#include <memory>
#include <vector>

#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/ui/web_applications/web_app_dialogs.h"
#include "chrome/browser/web_applications/web_app_install_info.h"
#include "components/webapps/common/web_app_id.h"
#include "ui/views/window/dialog_delegate.h"

class Profile;

namespace views {
class Checkbox;
class ImageView;
class View;
}  // namespace views

namespace web_app {

// A free-floating dialog that presents the user with two choices (allow and
// deny), along with an option for persistence, wrt a particular web app. This
// dialog is shown before Chrome launches an app window for protocol handler or
// file handler launches.
class LaunchAppUserChoiceDialogView : public views::DialogDelegateView {};

}  // namespace web_app

#endif  // CHROME_BROWSER_UI_VIEWS_WEB_APPS_LAUNCH_APP_USER_CHOICE_DIALOG_VIEW_H_