 Chromium Code Reviews
 Chromium Code Reviews Issue 831363002:
  Add the ability to run a callback between fork and exec.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 831363002:
  Add the ability to run a callback between fork and exec.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: base/process/launch.cc | 
| diff --git a/base/process/launch.cc b/base/process/launch.cc | 
| index a1c4d2159cbf00d04d14375437d3568489e01b8f..1c752bd343a945bbab9efda4984d210017183b0d 100644 | 
| --- a/base/process/launch.cc | 
| +++ b/base/process/launch.cc | 
| @@ -28,6 +28,9 @@ LaunchOptions::LaunchOptions() | 
| , clone_flags(0) | 
| , allow_new_privs(false) | 
| #endif // OS_LINUX | 
| +#if defined(OS_POSIX) | 
| + , pre_exec_delegate(NULL) | 
| +#endif // OS_POSIX | 
| #if defined(OS_CHROMEOS) | 
| , ctrl_terminal_fd(-1) | 
| #endif // OS_CHROMEOS |