| Index: base/memory/shared_memory.h
|
| diff --git a/base/memory/shared_memory.h b/base/memory/shared_memory.h
|
| index c4c92476b769cd79b7691c8bd758d8e85d210885..a94b399a6ae5606be6ef9a9825db3a5a84ed45ad 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"
|
|
|