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

Unified Diff: chrome/browser/browser_main.cc

Issue 10895: Add Terminate() to the Process object, have RenderProcessHost use this to avo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 1 month 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 | « chrome/browser/browser_init.cc ('k') | chrome/browser/first_run.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_main.cc
===================================================================
--- chrome/browser/browser_main.cc (revision 5371)
+++ chrome/browser/browser_main.cc (working copy)
@@ -239,7 +239,7 @@
uninstall_cmd.append(installer_util::switches::kForceUninstall);
uninstall_cmd.append(L" --");
uninstall_cmd.append(installer_util::switches::kDoNotRemoveSharedItems);
- process_util::LaunchApp(uninstall_cmd, false, false, NULL);
+ base::LaunchApp(uninstall_cmd, false, false, NULL);
}
return true;
}
@@ -374,7 +374,7 @@
parsed_command_line.command_line_string();
CommandLine::AppendSwitchWithValue(&new_command_line,
switches::kUserDataDir, user_data_dir);
- process_util::LaunchApp(new_command_line, false, false, NULL);
+ base::LaunchApp(new_command_line, false, false, NULL);
}
return ResultCodes::NORMAL_EXIT;
« no previous file with comments | « chrome/browser/browser_init.cc ('k') | chrome/browser/first_run.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698