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

Unified Diff: sandbox/win/src/sync_dispatcher.cc

Issue 1538283002: Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: macros Created 5 years 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 | « sandbox/win/src/sync_dispatcher.h ('k') | sandbox/win/src/sync_interception.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/sync_dispatcher.cc
diff --git a/sandbox/win/src/sync_dispatcher.cc b/sandbox/win/src/sync_dispatcher.cc
index a638d3d55a0ddd55ebfa4c0af24e7d25f77e15ed..2e5d1c50f2ddb93aabd8100892bdbf7ac3b29277 100644
--- a/sandbox/win/src/sync_dispatcher.cc
+++ b/sandbox/win/src/sync_dispatcher.cc
@@ -4,6 +4,8 @@
#include "sandbox/win/src/sync_dispatcher.h"
+#include <stdint.h>
+
#include "base/win/windows_version.h"
#include "sandbox/win/src/crosscall_client.h"
#include "sandbox/win/src/interception.h"
@@ -42,8 +44,8 @@ bool SyncDispatcher::SetupService(InterceptionManager* manager,
bool SyncDispatcher::CreateEvent(IPCInfo* ipc,
base::string16* name,
- uint32 event_type,
- uint32 initial_state) {
+ uint32_t event_type,
+ uint32_t initial_state) {
const wchar_t* event_name = name->c_str();
CountedParameterSet<NameBased> params;
params[NameBased::NAME] = ParamPickerMake(event_name);
@@ -60,7 +62,7 @@ bool SyncDispatcher::CreateEvent(IPCInfo* ipc,
bool SyncDispatcher::OpenEvent(IPCInfo* ipc,
base::string16* name,
- uint32 desired_access) {
+ uint32_t desired_access) {
const wchar_t* event_name = name->c_str();
CountedParameterSet<OpenEventParams> params;
« no previous file with comments | « sandbox/win/src/sync_dispatcher.h ('k') | sandbox/win/src/sync_interception.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698