| Index: base/file_util.h
|
| diff --git a/base/file_util.h b/base/file_util.h
|
| index 460a4f980bffdbb72ab8a23d8ea292701a0af6a1..62bab0afba856cc121d3af0cc3effd1585351f68 100644
|
| --- a/base/file_util.h
|
| +++ b/base/file_util.h
|
| @@ -5,6 +5,10 @@
|
| #ifndef MINI_CHROMIUM_BASE_FILE_UTIL_H_
|
| #define MINI_CHROMIUM_BASE_FILE_UTIL_H_
|
|
|
| +#include "build/build_config.h"
|
| +
|
| +#if defined(OS_POSIX)
|
| +
|
| #include <sys/types.h>
|
|
|
| namespace base {
|
| @@ -13,4 +17,6 @@ bool ReadFromFD(int fd, char* buffer, size_t bytes);
|
|
|
| } // namespace base
|
|
|
| +#endif // OS_POSIX
|
| +
|
| #endif // MINI_CHROMIUM_BASE_FILE_UTIL_H_
|
|
|