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

Unified Diff: remoting/host/win/launch_process_with_token.h

Issue 11118005: Pass the client end handle of the network-to-daemon IPC channel via handle inheritance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback. 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 | « remoting/host/remoting_me2me_host.cc ('k') | remoting/host/win/launch_process_with_token.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/launch_process_with_token.h
diff --git a/remoting/host/win/launch_process_with_token.h b/remoting/host/win/launch_process_with_token.h
index 8f462199b893db7ae9d7761038a9f581f1471c7f..8130eacc2ed7471325e46c62bc4e5bfdd19bfa3b 100644
--- a/remoting/host/win/launch_process_with_token.h
+++ b/remoting/host/win/launch_process_with_token.h
@@ -10,19 +10,49 @@
#include "base/command_line.h"
#include "base/file_path.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
#include "base/win/scoped_handle.h"
+namespace base {
+class SingleThreadTaskRunner;
+} // namespace base
+
+namespace IPC {
+class ChannelProxy;
+class Listener;
+} // namespace IPC
+
namespace remoting {
+// Pipe name prefix used by Chrome IPC channels to convert a channel name into
+// a pipe name.
+extern const char kChromePipeNamePrefix[];
+
+// Creates the server end of the IPC channel and applies the security
+// descriptor |pipe_security_descriptor| to it. The created channel proxy will
+// invoke methods of |delegate| on the calling thread while using
+// |io_task_runner| to send and receive messages in the background.
+bool CreateIpcChannel(
+ const std::string& channel_name,
+ const std::string& pipe_security_descriptor,
+ scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
+ IPC::Listener* delegate,
+ scoped_ptr<IPC::ChannelProxy>* channel_out);
+
// Creates a copy of the current process token for the given |session_id| so
// it can be used to launch a process in that session.
bool CreateSessionToken(uint32 session_id, base::win::ScopedHandle* token_out);
+// Generates a unique IPC channel name.
+std::string GenerateIpcChannelName(void* client);
+
// Launches |binary| in the security context of the user represented by
// |user_token|. The session ID specified by the token is respected as well.
bool LaunchProcessWithToken(const FilePath& binary,
const CommandLine::StringType& command_line,
HANDLE user_token,
+ bool inherit_handles,
DWORD creation_flags,
base::win::ScopedHandle* process_out,
base::win::ScopedHandle* thread_out);
« no previous file with comments | « remoting/host/remoting_me2me_host.cc ('k') | remoting/host/win/launch_process_with_token.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698