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

Unified Diff: chrome/browser/mac/relauncher.cc

Issue 7377012: Change base::LaunchProcess API slightly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 months 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
Index: chrome/browser/mac/relauncher.cc
diff --git a/chrome/browser/mac/relauncher.cc b/chrome/browser/mac/relauncher.cc
index 07f8e79851b99dab2a2eae8d88c53a9542a2093b..d5ce3238e472c067595d8d24bf453168315158ee 100644
--- a/chrome/browser/mac/relauncher.cc
+++ b/chrome/browser/mac/relauncher.cc
@@ -155,7 +155,7 @@ bool RelaunchAppWithHelper(const std::string& helper,
base::LaunchOptions options;
options.fds_to_remap = &fd_map;
- if (!base::LaunchProcess(relaunch_args, options)) {
+ if (!base::LaunchProcess(relaunch_args, options, NULL)) {
LOG(ERROR) << "base::LaunchProcess failed";
return false;
}
« no previous file with comments | « chrome/browser/importer/firefox_importer_unittest_utils_mac.cc ('k') | chrome/browser/platform_util_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698