| Index: sandbox/win/src/process_thread_policy.cc
|
| diff --git a/sandbox/win/src/process_thread_policy.cc b/sandbox/win/src/process_thread_policy.cc
|
| index b4976c0bbebeaefc8cfb9cdf57c9533d2c3c0b96..b58a287ed2d5937917b480fd30bbfe4c7acc5d97 100644
|
| --- a/sandbox/win/src/process_thread_policy.cc
|
| +++ b/sandbox/win/src/process_thread_policy.cc
|
| @@ -3,8 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "sandbox/win/src/process_thread_policy.h"
|
| -
|
| -#include <stdint.h>
|
|
|
| #include <string>
|
|
|
| @@ -103,8 +101,8 @@
|
| }
|
|
|
| NTSTATUS ProcessPolicy::OpenThreadAction(const ClientInfo& client_info,
|
| - uint32_t desired_access,
|
| - uint32_t thread_id,
|
| + uint32 desired_access,
|
| + uint32 thread_id,
|
| HANDLE* handle) {
|
| *handle = NULL;
|
|
|
| @@ -134,8 +132,8 @@
|
| }
|
|
|
| NTSTATUS ProcessPolicy::OpenProcessAction(const ClientInfo& client_info,
|
| - uint32_t desired_access,
|
| - uint32_t process_id,
|
| + uint32 desired_access,
|
| + uint32 process_id,
|
| HANDLE* handle) {
|
| *handle = NULL;
|
|
|
| @@ -166,7 +164,7 @@
|
|
|
| NTSTATUS ProcessPolicy::OpenProcessTokenAction(const ClientInfo& client_info,
|
| HANDLE process,
|
| - uint32_t desired_access,
|
| + uint32 desired_access,
|
| HANDLE* handle) {
|
| *handle = NULL;
|
| NtOpenProcessTokenFunction NtOpenProcessToken = NULL;
|
| @@ -190,8 +188,8 @@
|
|
|
| NTSTATUS ProcessPolicy::OpenProcessTokenExAction(const ClientInfo& client_info,
|
| HANDLE process,
|
| - uint32_t desired_access,
|
| - uint32_t attributes,
|
| + uint32 desired_access,
|
| + uint32 attributes,
|
| HANDLE* handle) {
|
| *handle = NULL;
|
| NtOpenProcessTokenExFunction NtOpenProcessTokenEx = NULL;
|
|
|