diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-14 02:38:02 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-14 02:38:02 +0000 |
commit | ba9c96c6105f11088857ad234221b949f86e05b9 (patch) | |
tree | dfc3307c6470bfb5fae423b0d66e16edeebc5e79 /chrome/browser/extensions/extensions_ui.cc | |
parent | d00c162781047db67af6ea481b85bcd3c69d24a3 (diff) | |
download | chromium_src-ba9c96c6105f11088857ad234221b949f86e05b9.zip chromium_src-ba9c96c6105f11088857ad234221b949f86e05b9.tar.gz chromium_src-ba9c96c6105f11088857ad234221b949f86e05b9.tar.bz2 |
Remove create_app_shortcut param from ExtensionInstallUI::Delegate::InstallUIProceed.
Reason: We don't support shortcut creation from this dialog anymore.
(Note: this was a TODO for Aaron).
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/3305030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59323 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extensions_ui.cc')
-rw-r--r-- | chrome/browser/extensions/extensions_ui.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/chrome/browser/extensions/extensions_ui.cc b/chrome/browser/extensions/extensions_ui.cc index 0538488..be64be8 100644 --- a/chrome/browser/extensions/extensions_ui.cc +++ b/chrome/browser/extensions/extensions_ui.cc @@ -520,11 +520,7 @@ void ExtensionsDOMHandler::HandleUninstallMessage(const ListValue* args) { GetExtensionInstallUI()->ConfirmUninstall(this, extension); } -void ExtensionsDOMHandler::InstallUIProceed(bool create_app_shortcut) { - // We only ever use ExtensionInstallUI for uninstalling, which should never - // result in it telling us to create a shortcut. - DCHECK(!create_app_shortcut); - +void ExtensionsDOMHandler::InstallUIProceed() { DCHECK(!extension_id_prompting_.empty()); // The extension can be uninstalled in another window while the UI was |