summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-26 16:14:56 +0000
committerdeanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-26 16:14:56 +0000
commit3dda33d5473684ec0e00ea99c678d7b7ef401ef8 (patch)
tree1ef379bed99bbc8a7741f337379416f55170407f
parent3c6c255cf903a7aee36ed78bcde9b589a316e594 (diff)
downloadchromium_src-3dda33d5473684ec0e00ea99c678d7b7ef401ef8.zip
chromium_src-3dda33d5473684ec0e00ea99c678d7b7ef401ef8.tar.gz
chromium_src-3dda33d5473684ec0e00ea99c678d7b7ef401ef8.tar.bz2
Remove zombie hunting on startup.
We are hopefully over our zombie problems, and this can cause other troubles. This should also improve startup performance, since we don't need to iterate all processes on the system on startup. BUG=6468 Review URL: http://codereview.chromium.org/27203 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10471 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/browser_main.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 0693cd1..4b77c71 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -400,8 +400,6 @@ int BrowserMain(const MainFunctionParams& parameters) {
if (process_singleton.NotifyOtherProcess())
return ResultCodes::NORMAL_EXIT;
- process_singleton.HuntForZombieChromeProcesses();
-
// Do the tasks if chrome has been upgraded while it was last running.
if (!already_running && DoUpgradeTasks(parsed_command_line)) {
return ResultCodes::NORMAL_EXIT;