Index: base/threading/platform_thread_posix.cc |
=================================================================== |
--- base/threading/platform_thread_posix.cc (revision 109902) |
+++ base/threading/platform_thread_posix.cc (working copy) |
@@ -13,7 +13,6 @@ |
#include "base/safe_strerror_posix.h" |
#include "base/threading/thread_local.h" |
#include "base/threading/thread_restrictions.h" |
-#include "base/tracked_objects.h" |
#if defined(OS_MACOSX) |
#include <mach/mach.h> |
@@ -176,7 +175,6 @@ |
// have to cast away const because ThreadLocalPointer does not support const |
// void* |
current_thread_name.Pointer()->Set(const_cast<char*>(name)); |
- tracked_objects::ThreadData::InitializeThreadContext(name); |
// http://0pointer.de/blog/projects/name-your-threads.html |
@@ -212,7 +210,6 @@ |
// have to cast away const because ThreadLocalPointer does not support const |
// void* |
current_thread_name.Pointer()->Set(const_cast<char*>(name)); |
- tracked_objects::ThreadData::InitializeThreadContext(name); |
// (This should be relatively simple to implement for the BSDs; I |
// just don't have one handy to test the code on.) |