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

Unified Diff: sandbox/win/src/sync_interception.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.cc ('k') | sandbox/win/src/sync_policy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « sandbox/win/src/sync_dispatcher.cc ('k') | sandbox/win/src/sync_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698