Index: base/thread_local_posix.cc |
diff --git a/base/thread_local_posix.cc b/base/thread_local_posix.cc |
index 2abfc0e5c078951eafe7d833da9c4dea4585af45..4d034030634a7a0ce48b8bc4e4684cf22e91be71 100644 |
--- a/base/thread_local_posix.cc |
+++ b/base/thread_local_posix.cc |
@@ -10,6 +10,8 @@ |
namespace base { |
+namespace internal { |
+ |
// static |
void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { |
int error = pthread_key_create(&slot, NULL); |
@@ -33,4 +35,6 @@ void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { |
CHECK_EQ(error, 0); |
} |
+} // namespace internal |
+ |
} // namespace base |