1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/extensions/extension_install_ui_desktop.h"
#include "base/functional/bind.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/prefs/incognito_mode_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_factory.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/browser_navigator_params.h"
#include "chrome/browser/ui/browser_tabstrip.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/extensions/installation_error_infobar_delegate.h"
#include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
#include "chrome/browser/ui/simple_message_box.h"
#include "chrome/browser/ui/singleton_tabs.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/install/crx_install_error.h"
#include "extensions/common/extension.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "ash/constants/notifier_catalogs.h"
#include "ash/public/cpp/system/toast_data.h"
#include "ash/public/cpp/system/toast_manager.h"
#include "chrome/grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#else
#include "chrome/common/url_constants.h"
#endif
using content::BrowserThread;
using content::WebContents;
using extensions::Extension;
namespace {
Browser* FindOrCreateVisibleBrowser(Profile* profile) {
// TODO(mpcomplete): remove this workaround for http://crbug.com/244246
// after fixing http://crbug.com/38676.
if (!IncognitoModePrefs::CanOpenBrowser(profile)) {
return nullptr;
}
chrome::ScopedTabbedBrowserDisplayer displayer(profile);
Browser* browser = displayer.browser();
if (browser->tab_strip_model()->count() == 0) {
chrome::AddTabAt(browser, GURL(), -1, true);
}
return browser;
}
#if BUILDFLAG(IS_CHROMEOS)
// Toast id and duration for extension install success.
constexpr char kExtensionInstallSuccessToastId[] = "extension_install_success";
void ShowToast(const std::string& id,
ash::ToastCatalogName catalog_name,
const std::u16string& text) {
ash::ToastManager::Get()->Show(ash::ToastData(id, catalog_name, text));
}
#endif // BUILDFLAG(IS_CHROMEOS)
void ShowAppInstalledNotification(
scoped_refptr<const extensions::Extension> extension,
Profile* profile) {
#if BUILDFLAG(IS_CHROMEOS)
ShowToast(kExtensionInstallSuccessToastId,
ash::ToastCatalogName::kExtensionInstallSuccess,
l10n_util::GetStringFUTF16(IDS_EXTENSION_NOTIFICATION_INSTALLED,
base::UTF8ToUTF16(extension->name())));
#else
Profile* current_profile = profile->GetOriginalProfile();
Browser* browser = FindOrCreateVisibleBrowser(current_profile);
if (browser) {
NavigateParams params(
GetSingletonTabNavigateParams(browser, GURL(chrome::kChromeUIAppsURL)));
Navigate(¶ms);
}
#endif
}
} // namespace
ExtensionInstallUIDesktop::ExtensionInstallUIDesktop(
content::BrowserContext* context)
: ExtensionInstallUI(context) {}
ExtensionInstallUIDesktop::~ExtensionInstallUIDesktop() = default;
void ExtensionInstallUIDesktop::OnInstallSuccess(
scoped_refptr<const extensions::Extension> extension,
const SkBitmap* icon) {
if (IsUiDisabled() || skip_post_install_ui() || extension->is_theme()) {
return;
}
if (!profile()) {
// TODO(zelidrag): Figure out what exact conditions cause crash
// http://crbug.com/159437 and write browser test to cover it.
DUMP_WILL_BE_NOTREACHED();
return;
}
// Extensions aren't enabled by default in incognito so we confirm
// the install in a normal window.
Profile* current_profile = profile()->GetOriginalProfile();
Browser* browser = FindOrCreateVisibleBrowser(current_profile);
if (!extension->is_app()) {
ShowBubble(extension, browser, *icon);
return;
}
if (!use_app_installed_bubble()) {
ShowAppInstalledNotification(extension, profile());
return;
}
if (browser) {
ShowBubble(extension, browser, *icon);
}
}
void ExtensionInstallUIDesktop::OnInstallFailure(
const extensions::CrxInstallError& error) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (IsUiDisabled() || skip_post_install_ui()) {
return;
}
Browser* browser = chrome::FindLastActiveWithProfile(profile());
if (!browser) { // Can be nullptr in unittests.
return;
}
WebContents* web_contents =
browser->tab_strip_model()->GetActiveWebContents();
if (!web_contents) {
return;
}
InstallationErrorInfoBarDelegate::Create(
infobars::ContentInfoBarManager::FromWebContents(web_contents), error);
}
|