// Copyright 2022 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_FORCE_INSTALLED_DEPRECATED_APPS_DIALOG_VIEW_H_ #define CHROME_BROWSER_UI_VIEWS_WEB_APPS_FORCE_INSTALLED_DEPRECATED_APPS_DIALOG_VIEW_H_ #include <string> #include "base/functional/callback_forward.h" #include "extensions/common/extension_id.h" #include "ui/views/layout/box_layout_view.h" namespace content { class WebContents; } // namespace content // Creates a dialog with one button. Clicking it opens a new tab to // kChromeAppsDeprecationLearnMoreURL. class ForceInstalledDeprecatedAppsDialogView : public views::BoxLayoutView { … }; #endif // CHROME_BROWSER_UI_VIEWS_WEB_APPS_FORCE_INSTALLED_DEPRECATED_APPS_DIALOG_VIEW_H_