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

Unified Diff: base/process_util_unittest.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
« no previous file with comments | « base/process_util_posix.cc ('k') | base/process_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_unittest.cc
diff --git a/base/process_util_unittest.cc b/base/process_util_unittest.cc
index 826a82be485ab8f8534cab6161bf40b8a6db64c7..5256b37c8cdd1dd4bd19563eff4e54bc9519ab54 100644
--- a/base/process_util_unittest.cc
+++ b/base/process_util_unittest.cc
@@ -511,7 +511,7 @@ std::string TestLaunchProcess(const base::environment_vector& env_changes) {
options.wait = true;
options.environ = &env_changes;
options.fds_to_remap = &fds_to_remap;
- EXPECT_TRUE(base::LaunchProcess(args, options));
+ EXPECT_TRUE(base::LaunchProcess(args, options, NULL));
PCHECK(HANDLE_EINTR(close(fds[1])) == 0);
char buf[512];
« no previous file with comments | « base/process_util_posix.cc ('k') | base/process_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698