summaryrefslogtreecommitdiffstats
path: root/base/memory/shared_memory.h
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-24 00:44:47 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-24 08:46:03 +0000
commit9beac25f9447dd40cc132df1160feb91822181b8 (patch)
treebc08be2127f36469847a532c0e3500c1b0febbde /base/memory/shared_memory.h
parentebe805c971bd41b5666c52adfc83ceabb5bde0ed (diff)
downloadchromium_src-9beac25f9447dd40cc132df1160feb91822181b8.zip
chromium_src-9beac25f9447dd40cc132df1160feb91822181b8.tar.gz
chromium_src-9beac25f9447dd40cc132df1160feb91822181b8.tar.bz2
Switch to standard integer types in base/memory/.
BUG=138542 TBR=mark@chromium.org Review URL: https://codereview.chromium.org/1549003002 Cr-Commit-Position: refs/heads/master@{#366816}
Diffstat (limited to 'base/memory/shared_memory.h')
-rw-r--r--base/memory/shared_memory.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/base/memory/shared_memory.h b/base/memory/shared_memory.h
index c4c9247..a94b399 100644
--- a/base/memory/shared_memory.h
+++ b/base/memory/shared_memory.h
@@ -5,22 +5,20 @@
#ifndef BASE_MEMORY_SHARED_MEMORY_H_
#define BASE_MEMORY_SHARED_MEMORY_H_
-#include "build/build_config.h"
+#include <stddef.h>
#include <string>
-#if defined(OS_POSIX)
-#include <stdio.h>
-#include <sys/types.h>
-#include <semaphore.h>
-#endif
-
#include "base/base_export.h"
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "base/memory/shared_memory_handle.h"
#include "base/process/process_handle.h"
+#include "build/build_config.h"
#if defined(OS_POSIX)
+#include <stdio.h>
+#include <sys/types.h>
+#include <semaphore.h>
#include "base/file_descriptor_posix.h"
#include "base/files/file_util.h"
#include "base/files/scoped_file.h"