summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui
diff options
context:
space:
mode:
authorgeorged@chromium.org <georged@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 23:33:45 +0000
committergeorged@chromium.org <georged@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 23:33:45 +0000
commit8f78375f6e69a6d39dcb820fb10fd7c61408c4e1 (patch)
treeabcb9df6c48ac9a4be3f9e894b7ce8dda2c7f4e5 /chrome/browser/dom_ui
parent3b0c80b47eaf1b98e34bfc5dc37c26a503f1d072 (diff)
downloadchromium_src-8f78375f6e69a6d39dcb820fb10fd7c61408c4e1.zip
chromium_src-8f78375f6e69a6d39dcb820fb10fd7c61408c4e1.tar.gz
chromium_src-8f78375f6e69a6d39dcb820fb10fd7c61408c4e1.tar.bz2
Installing extensions (drag/drop, download crx file) will now be
handled by the Chrome instance w/o shell execute. This will install the extension in the proper profile using the running bits. Review URL: http://codereview.chromium.org/55046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13000 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui')
-rw-r--r--chrome/browser/dom_ui/downloads_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/dom_ui/downloads_ui.cc b/chrome/browser/dom_ui/downloads_ui.cc
index 80678d9..81684bc 100644
--- a/chrome/browser/dom_ui/downloads_ui.cc
+++ b/chrome/browser/dom_ui/downloads_ui.cc
@@ -315,7 +315,7 @@ void DownloadsDOMHandler::HandleGetDownloads(const Value* value) {
void DownloadsDOMHandler::HandleOpenFile(const Value* value) {
DownloadItem* file = GetDownloadByValue(value);
if (file)
- download_manager_->OpenDownloadInShell(file, NULL);
+ download_manager_->OpenDownload(file, NULL);
}
void DownloadsDOMHandler::HandleDrag(const Value* value) {