diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 19:28:00 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 19:28:00 +0000 |
commit | 8a282714107a45d1341265f18774264fe02de77b (patch) | |
tree | 7f81dcd0b60b6b12df45580619a5a56981b0a1ed /content/browser/zygote_host_linux.cc | |
parent | 2ef498fa1e483669eb2d938aa07e450f5f868708 (diff) | |
download | chromium_src-8a282714107a45d1341265f18774264fe02de77b.zip chromium_src-8a282714107a45d1341265f18774264fe02de77b.tar.gz chromium_src-8a282714107a45d1341265f18774264fe02de77b.tar.bz2 |
Remove extensions code from download code. The delegate and other users in Chrome can always figure out when a download is for an extension install, instead of storing this data in DownloadItem. I added two new methods to the delegate to allow it to override opening the download item, which allows the chrome layer to install the crx when it completes or is opened.
BUG=82782
Review URL: http://codereview.chromium.org/7685046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97899 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/zygote_host_linux.cc')
-rw-r--r-- | content/browser/zygote_host_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/zygote_host_linux.cc b/content/browser/zygote_host_linux.cc index dc2fc4e..9d1d02d 100644 --- a/content/browser/zygote_host_linux.cc +++ b/content/browser/zygote_host_linux.cc @@ -172,7 +172,7 @@ void ZygoteHost::Init(const std::string& sandbox_cmd) { // In the SUID sandbox, the real zygote is forked from the sandbox. // We need to look for it. // But first, wait for the zygote to tell us it's running. - // The sending code is in chrome/browser/zygote_main_linux.cc. + // The sending code is in content/browser/zygote_main_linux.cc. std::vector<int> fds_vec; const int kExpectedLength = sizeof(kZygoteMagic); char buf[kExpectedLength]; |