| Index: sandbox/win/src/sync_dispatcher.cc
|
| diff --git a/sandbox/win/src/sync_dispatcher.cc b/sandbox/win/src/sync_dispatcher.cc
|
| index 2e5d1c50f2ddb93aabd8100892bdbf7ac3b29277..a638d3d55a0ddd55ebfa4c0af24e7d25f77e15ed 100644
|
| --- a/sandbox/win/src/sync_dispatcher.cc
|
| +++ b/sandbox/win/src/sync_dispatcher.cc
|
| @@ -3,8 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "sandbox/win/src/sync_dispatcher.h"
|
| -
|
| -#include <stdint.h>
|
|
|
| #include "base/win/windows_version.h"
|
| #include "sandbox/win/src/crosscall_client.h"
|
| @@ -44,8 +42,8 @@
|
|
|
| bool SyncDispatcher::CreateEvent(IPCInfo* ipc,
|
| base::string16* name,
|
| - uint32_t event_type,
|
| - uint32_t initial_state) {
|
| + uint32 event_type,
|
| + uint32 initial_state) {
|
| const wchar_t* event_name = name->c_str();
|
| CountedParameterSet<NameBased> params;
|
| params[NameBased::NAME] = ParamPickerMake(event_name);
|
| @@ -62,7 +60,7 @@
|
|
|
| bool SyncDispatcher::OpenEvent(IPCInfo* ipc,
|
| base::string16* name,
|
| - uint32_t desired_access) {
|
| + uint32 desired_access) {
|
| const wchar_t* event_name = name->c_str();
|
|
|
| CountedParameterSet<OpenEventParams> params;
|
|
|