| 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 55c27bf6cda57c7f584861f7a130d5e2d80a0f70..0525d7318a3658b1ae3e6b81f22f6c2f465feb0f 100644
|
| --- a/remoting/host/win/launch_process_with_token.h
|
| +++ b/remoting/host/win/launch_process_with_token.h
|
| @@ -6,6 +6,7 @@
|
| #define REMOTING_HOST_WIN_LAUNCH_PROCESS_WITH_TOKEN_H_
|
|
|
| #include <windows.h>
|
| +#include <stdint.h>
|
| #include <string>
|
|
|
| #include "base/command_line.h"
|
| @@ -24,7 +25,8 @@ extern base::LazyInstance<base::Lock>::Leaky g_inherit_handles_lock;
|
|
|
| // 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);
|
| +bool CreateSessionToken(uint32_t session_id,
|
| + base::win::ScopedHandle* token_out);
|
|
|
| // Launches |binary| in the security context of the user represented by
|
| // |user_token|. The session ID specified by the token is respected as well.
|
|
|