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

Unified Diff: sandbox/win/src/filesystem_policy.h

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/filesystem_interception.cc ('k') | sandbox/win/src/filesystem_policy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/win/src/filesystem_policy.h
diff --git a/sandbox/win/src/filesystem_policy.h b/sandbox/win/src/filesystem_policy.h
index c2ee160d5045acd2ac255a01317343c57904600a..4103ad6d5f40defd2e7379fe7eb0f920204c7994 100644
--- a/sandbox/win/src/filesystem_policy.h
+++ b/sandbox/win/src/filesystem_policy.h
@@ -5,10 +5,9 @@
#ifndef SANDBOX_SRC_FILESYSTEM_POLICY_H__
#define SANDBOX_SRC_FILESYSTEM_POLICY_H__
-#include <stdint.h>
-
#include <string>
+#include "base/basictypes.h"
#include "base/strings/string16.h"
#include "sandbox/win/src/crosscall_server.h"
#include "sandbox/win/src/nt_internals.h"
@@ -41,13 +40,13 @@
// 'file' : The target file or directory.
static bool CreateFileAction(EvalResult eval_result,
const ClientInfo& client_info,
- const base::string16& file,
- uint32_t attributes,
- uint32_t desired_access,
- uint32_t file_attributes,
- uint32_t share_access,
- uint32_t create_disposition,
- uint32_t create_options,
+ const base::string16 &file,
+ uint32 attributes,
+ uint32 desired_access,
+ uint32 file_attributes,
+ uint32 share_access,
+ uint32 create_disposition,
+ uint32 create_options,
HANDLE* handle,
NTSTATUS* nt_status,
ULONG_PTR* io_information);
@@ -59,11 +58,11 @@
// 'file' : The target file or directory.
static bool OpenFileAction(EvalResult eval_result,
const ClientInfo& client_info,
- const base::string16& file,
- uint32_t attributes,
- uint32_t desired_access,
- uint32_t share_access,
- uint32_t open_options,
+ const base::string16 &file,
+ uint32 attributes,
+ uint32 desired_access,
+ uint32 share_access,
+ uint32 open_options,
HANDLE* handle,
NTSTATUS* nt_status,
ULONG_PTR* io_information);
@@ -72,8 +71,8 @@
// API that is compatible with the IPC-received parameters.
static bool QueryAttributesFileAction(EvalResult eval_result,
const ClientInfo& client_info,
- const base::string16& file,
- uint32_t attributes,
+ const base::string16 &file,
+ uint32 attributes,
FILE_BASIC_INFORMATION* file_info,
NTSTATUS* nt_status);
@@ -82,8 +81,8 @@
static bool QueryFullAttributesFileAction(
EvalResult eval_result,
const ClientInfo& client_info,
- const base::string16& file,
- uint32_t attributes,
+ const base::string16 &file,
+ uint32 attributes,
FILE_NETWORK_OPEN_INFORMATION* file_info,
NTSTATUS* nt_status);
@@ -93,8 +92,8 @@
const ClientInfo& client_info,
HANDLE target_file_handle,
void* file_info,
- uint32_t length,
- uint32_t info_class,
+ uint32 length,
+ uint32 info_class,
IO_STATUS_BLOCK* io_block,
NTSTATUS* nt_status);
};
« no previous file with comments | « sandbox/win/src/filesystem_interception.cc ('k') | sandbox/win/src/filesystem_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698