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

Unified Diff: base/process_util.h

Issue 10918255: The Windows portion of Native Messagaing (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Less Sleepy Created 8 years, 2 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') | base/process_util_win.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util.h
diff --git a/base/process_util.h b/base/process_util.h
index 3fb7e2baa95a173f377973e29ca81a11203d47fb..e14b621a646a831f8a72ca39fe081b1baa3777db 100644
--- a/base/process_util.h
+++ b/base/process_util.h
@@ -237,6 +237,8 @@ struct LaunchOptions {
#if defined(OS_WIN)
start_hidden(false), inherit_handles(false), as_user(NULL),
empty_desktop_name(false), job_handle(NULL),
+ stdin_handle(kNullProcessHandle),
rvargas (doing something else) 2012/11/29 01:19:23 This is assigning a "process handle" to a file han
Sergey Ulanov 2012/12/01 01:23:00 Addressed this in crrev.com/11419267
+ stdout_handle(kNullProcessHandle),
force_breakaway_from_job_(false)
#else
environ(NULL), fds_to_remap(NULL), maximize_rlimits(NULL),
@@ -279,6 +281,10 @@ struct LaunchOptions {
// the job object fails.
HANDLE job_handle;
+ // Handles for the redirection of stdin and/or stdout.
+ HANDLE stdin_handle;
+ HANDLE stdout_handle;
+
// If set to true, ensures that the child process is launched with the
// CREATE_BREAKAWAY_FROM_JOB flag which allows it to breakout of the parent
// job if any.
« no previous file with comments | « no previous file | base/process_util_win.cc » ('j') | base/process_util_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698