| Index: sandbox/win/src/sync_interception.cc
|
| diff --git a/sandbox/win/src/sync_interception.cc b/sandbox/win/src/sync_interception.cc
|
| index 420d185ab22926e9ce8ea6b0b0e19ccb78d08c1b..da612a5b35029e65b056cc5838c20714a44cdcf3 100644
|
| --- a/sandbox/win/src/sync_interception.cc
|
| +++ b/sandbox/win/src/sync_interception.cc
|
| @@ -3,8 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "sandbox/win/src/sync_interception.h"
|
| -
|
| -#include <stdint.h>
|
|
|
| #include "sandbox/win/src/crosscall_client.h"
|
| #include "sandbox/win/src/ipc_tags.h"
|
| @@ -18,7 +16,7 @@
|
| namespace sandbox {
|
|
|
| ResultCode ProxyCreateEvent(LPCWSTR name,
|
| - uint32_t initial_state,
|
| + uint32 initial_state,
|
| EVENT_TYPE event_type,
|
| void* ipc_memory,
|
| CrossCallReturn* answer) {
|
| @@ -35,7 +33,7 @@
|
| }
|
|
|
| ResultCode ProxyOpenEvent(LPCWSTR name,
|
| - uint32_t desired_access,
|
| + uint32 desired_access,
|
| void* ipc_memory,
|
| CrossCallReturn* answer) {
|
| CountedParameterSet<OpenEventParams> params;
|
| @@ -81,7 +79,7 @@
|
| object_attribs_copy.RootDirectory = NULL;
|
|
|
| wchar_t* name = NULL;
|
| - uint32_t attributes = 0;
|
| + uint32 attributes = 0;
|
| NTSTATUS ret = AllocAndCopyName(&object_attribs_copy, &name, &attributes,
|
| NULL);
|
| if (!NT_SUCCESS(ret) || name == NULL)
|
| @@ -134,7 +132,7 @@
|
| object_attribs_copy.RootDirectory = NULL;
|
|
|
| wchar_t* name = NULL;
|
| - uint32_t attributes = 0;
|
| + uint32 attributes = 0;
|
| NTSTATUS ret = AllocAndCopyName(&object_attribs_copy, &name, &attributes,
|
| NULL);
|
| if (!NT_SUCCESS(ret) || name == NULL)
|
|
|