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

Unified Diff: base/process_util.h

Issue 7789018: Move launching in a job object logic (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util.h
===================================================================
--- base/process_util.h (revision 99780)
+++ base/process_util.h (working copy)
@@ -213,7 +213,7 @@
LaunchOptions() : wait(false),
#if defined(OS_WIN)
start_hidden(false), inherit_handles(false), as_user(NULL),
- empty_desktop_name(false)
+ empty_desktop_name(false), job_handle(NULL)
#else
environ(NULL), fds_to_remap(NULL), new_process_group(false)
#if defined(OS_LINUX)
@@ -245,6 +245,9 @@
// If true, use an empty string for the desktop name.
bool empty_desktop_name;
+
+ // If non-NULL, launches the application in that job object.
+ HANDLE job_handle;
#else
// If non-NULL, set/unset environment variables.
// See documentation of AlterEnvironment().
« no previous file with comments | « no previous file | base/process_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698