Index: base/threading/platform_thread_posix.cc |
diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc |
index 8452909ed4438a4082e5c03b54d33cbb82187326..edb2ad3cd06da6edc7d6a3e53bd16eb0ffd84197 100644 |
--- a/base/threading/platform_thread_posix.cc |
+++ b/base/threading/platform_thread_posix.cc |
@@ -2,18 +2,20 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "base/threading/platform_thread.h" |
- |
-#include <errno.h> |
+#include <limits.h> |
+#include <mach/mach_init.h> |
+#include <pthread.h> |
#include <sched.h> |
+#include <stddef.h> |
+#include <sys/_structs.h> |
+#include <sys/errno.h> |
+#include <time.h> |
-#include "base/logging.h" |
-#include "base/safe_strerror_posix.h" |
-#include "base/scoped_ptr.h" |
+#include "base/threading/platform_thread.h" |
#include "base/threading/thread_restrictions.h" |
+#include "build/build_config.h" |
#if defined(OS_MACOSX) |
-#include <mach/mach.h> |
#include <sys/resource.h> |
#include <algorithm> |
#endif |