chromium/chrome/browser/ui/views/web_apps/file_handler_launch_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_FILE_HANDLER_LAUNCH_DIALOG_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_WEB_APPS_FILE_HANDLER_LAUNCH_DIALOG_VIEW_H_

#include <memory>
#include <vector>

#include "base/files/file_path.h"
#include "base/functional/callback_forward.h"
#include "chrome/browser/ui/views/web_apps/launch_app_user_choice_dialog_view.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 "url/gurl.h"

class Profile;

namespace web_app {

// User choice dialog for PWA file handling, shown before launching a PWA to
// handle files. See https://web.dev/file-handling/
class FileHandlerLaunchDialogView : public LaunchAppUserChoiceDialogView {};

}  // namespace web_app

#endif  // CHROME_BROWSER_UI_VIEWS_WEB_APPS_FILE_HANDLER_LAUNCH_DIALOG_VIEW_H_