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

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

Issue 279006: Fix extension canceling; the CFUserNotification functionality gets a bit weir... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_install_ui.cc
===================================================================
--- chrome/browser/extensions/extension_install_ui.cc (revision 28991)
+++ chrome/browser/extensions/extension_install_ui.cc (working copy)
@@ -154,7 +154,7 @@
l10n_util::GetString(IDS_EXTENSION_PROMPT_CANCEL_BUTTON)));
CFOptionFlags response;
- if (kCFUserNotificationAlternateResponse == CFUserNotificationDisplayAlert(
+ CFUserNotificationDisplayAlert(
0, kCFUserNotificationCautionAlertLevel,
NULL, // TODO(port): show the install_icon instead of a default.
NULL, NULL, // Sound URL, localization URL.
@@ -163,7 +163,8 @@
NULL, // Default button.
confirm_cancel,
NULL, // Other button.
- &response)) {
+ &response);
+ if (kCFUserNotificationAlternateResponse == response) {
Mark Mentovai 2009/10/14 22:32:30 We don't usually do (constant == variable), we usu
delegate->AbortInstall();
} else {
delegate->ContinueInstall();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698