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

Unified Diff: runtime/bin/process_win.cc

Issue 9108008: Add optional workingDirectory argument to Process.start. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 12 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: runtime/bin/process_win.cc
===================================================================
--- runtime/bin/process_win.cc (revision 2981)
+++ runtime/bin/process_win.cc (working copy)
@@ -229,6 +229,7 @@
int Process::Start(const char* path,
char* arguments[],
intptr_t arguments_length,
+ const char* working_directory,
intptr_t* in,
intptr_t* out,
intptr_t* err,
@@ -346,7 +347,7 @@
TRUE, // InheritHandles
0, // CreationFlags
NULL, // Environment
- NULL, // CurrentDirectory,
+ working_directory,
&startup_info,
&process_info);

Powered by Google App Engine
This is Rietveld 408576698