Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Unified Diff: chrome/browser/extensions/crx_installer.cc

Issue 1534123002: [Extensions] Migrate ExtensionInstallPrompt::Delegate to be a callback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/crx_installer.h ('k') | chrome/browser/extensions/extension_disabled_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/crx_installer.cc
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc
index 3663a17a5913bd1682e67776eb4c0b7f63dfd548..372bb926f846d778699965cdc24b9494fb85cfdc 100644
--- a/chrome/browser/extensions/crx_installer.cc
+++ b/chrome/browser/extensions/crx_installer.cc
@@ -627,8 +627,9 @@ void CrxInstaller::ConfirmInstall() {
if (client_ &&
(!allow_silent_install_ || !approved_) &&
!update_from_settings_page_) {
- AddRef(); // Balanced in InstallUIProceed() and InstallUIAbort().
- client_->ShowDialog(this, extension(), nullptr, show_dialog_callback_);
+ AddRef(); // Balanced in OnInstallPromptDone().
+ client_->ShowDialog(base::Bind(&CrxInstaller::OnInstallPromptDone, this),
+ extension(), nullptr, show_dialog_callback_);
} else {
if (!installer_task_runner_->PostTask(
FROM_HERE,
@@ -638,37 +639,30 @@ void CrxInstaller::ConfirmInstall() {
return;
}
-void CrxInstaller::InstallUIProceed() {
+void CrxInstaller::OnInstallPromptDone(ExtensionInstallPrompt::Result result) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
- ExtensionService* service = service_weak_.get();
- if (!service || service->browser_terminating())
- return;
-
// If update_from_settings_page_ boolean is true, this functions is
// getting called in response to ExtensionInstallPrompt::ConfirmReEnable()
// and if it is false, this function is called in response to
// ExtensionInstallPrompt::ShowDialog().
- if (update_from_settings_page_) {
- service->GrantPermissionsAndEnableExtension(extension());
- } else {
- if (!installer_task_runner_->PostTask(
- FROM_HERE,
- base::Bind(&CrxInstaller::CompleteInstall, this)))
- NOTREACHED();
- }
-
- Release(); // balanced in ConfirmInstall() or ConfirmReEnable().
-}
+ if (result == ExtensionInstallPrompt::Result::ACCEPTED) {
+ ExtensionService* service = service_weak_.get();
+ if (!service || service->browser_terminating())
+ return;
-void CrxInstaller::InstallUIAbort(bool user_initiated) {
- // If update_from_settings_page_ boolean is true, this functions is
- // getting called in response to ExtensionInstallPrompt::ConfirmReEnable()
- // and if it is false, this function is called in response to
- // ExtensionInstallPrompt::ShowDialog().
- if (!update_from_settings_page_) {
- const char* histogram_name = user_initiated ? "InstallCancel"
- : "InstallAbort";
+ if (update_from_settings_page_) {
+ service->GrantPermissionsAndEnableExtension(extension());
+ } else if (!installer_task_runner_->PostTask(
+ FROM_HERE,
+ base::Bind(&CrxInstaller::CompleteInstall, this))) {
+ NOTREACHED();
+ }
+ } else if (!update_from_settings_page_) {
+ const char* histogram_name =
+ result == ExtensionInstallPrompt::Result::USER_CANCELED
+ ? "InstallCancel"
+ : "InstallAbort";
ExtensionService::RecordPermissionMessagesHistogram(
extension(), histogram_name);
@@ -676,9 +670,6 @@ void CrxInstaller::InstallUIAbort(bool user_initiated) {
}
Release(); // balanced in ConfirmInstall() or ConfirmReEnable().
-
- // We're done. Since we don't post any more tasks to ourself, our ref count
- // should go to zero and we die. The destructor will clean up the temp dir.
}
void CrxInstaller::CompleteInstall() {
@@ -912,13 +903,13 @@ void CrxInstaller::ConfirmReEnable() {
return;
if (client_) {
- AddRef(); // Balanced in InstallUIProceed() and InstallUIAbort().
+ AddRef(); // Balanced in OnInstallPromptDone().
ExtensionInstallPrompt::PromptType type =
ExtensionInstallPrompt::GetReEnablePromptTypeForExtension(
service->profile(), extension());
client_->ShowDialog(
- this, extension(), nullptr,
- make_scoped_ptr(new ExtensionInstallPrompt::Prompt(type)),
+ base::Bind(&CrxInstaller::OnInstallPromptDone, this), extension(),
+ nullptr, make_scoped_ptr(new ExtensionInstallPrompt::Prompt(type)),
ExtensionInstallPrompt::GetDefaultShowDialogCallback());
}
}
« no previous file with comments | « chrome/browser/extensions/crx_installer.h ('k') | chrome/browser/extensions/extension_disabled_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698