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

Unified Diff: base/process/launch.h

Issue 1809383004: Set current directory when launching Native Messaging processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | base/process/launch_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process/launch.h
diff --git a/base/process/launch.h b/base/process/launch.h
index b1811d4b16ab26cf1c60337d9c7134193de9542e..adfa093cfa774f44bbede98232adc4a5be3b8c16 100644
--- a/base/process/launch.h
+++ b/base/process/launch.h
@@ -65,6 +65,9 @@ struct BASE_EXPORT LaunchOptions {
// If true, wait for the process to complete.
bool wait;
+ // If not empty, change to this directory before executing the new process.
+ base::FilePath current_directory;
+
#if defined(OS_WIN)
bool start_hidden;
@@ -151,9 +154,6 @@ struct BASE_EXPORT LaunchOptions {
#endif // defined(OS_LINUX)
#if defined(OS_POSIX)
- // If not empty, change to this directory before execing the new process.
- base::FilePath current_directory;
-
// If non-null, a delegate to be run immediately prior to executing the new
// program in the child process.
//
« no previous file with comments | « no previous file | base/process/launch_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698