Index: base/platform_file_posix.cc |
diff --git a/base/platform_file_posix.cc b/base/platform_file_posix.cc |
index 38989c6bf41cddcf5b961b31cbcbfc6782df5d9d..b0309c6c6dd9778a1fca660cea5f221006094f2e 100644 |
--- a/base/platform_file_posix.cc |
+++ b/base/platform_file_posix.cc |
@@ -2,16 +2,22 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "base/platform_file.h" |
- |
-#include <fcntl.h> |
-#include <errno.h> |
+#include <stddef.h> |
+#include <sys/_structs.h> |
+#include <sys/errno.h> |
+#include <sys/fcntl.h> |
#include <sys/stat.h> |
+#include <sys/time.h> |
+#include <unistd.h> |
+#include <string> |
+#include "base/basictypes.h" |
#include "base/eintr_wrapper.h" |
#include "base/file_path.h" |
#include "base/logging.h" |
-#include "base/utf_string_conversions.h" |
+#include "base/platform_file.h" |
+#include "base/time.h" |
+#include "build/build_config.h" |
namespace base { |