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

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

Issue 1539423002: Revert of Switch to standard integer types in sandbox/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 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;
« 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