Chromium Code Reviews| Index: base/thread_local_win.cc |
| diff --git a/base/thread_local_win.cc b/base/thread_local_win.cc |
| index 368c0d682803dd09b8cdd68ec803101f9f25034a..ea14a6732270caf86812db5aa99a6cc9a5b94ba8 100644 |
| --- a/base/thread_local_win.cc |
| +++ b/base/thread_local_win.cc |
| @@ -10,6 +10,8 @@ |
| namespace base { |
| +namespace internal { |
| + |
| // static |
| void ThreadLocalPlatform::AllocateSlot(SlotType& slot) { |
| slot = TlsAlloc(); |
| @@ -35,4 +37,6 @@ void ThreadLocalPlatform::SetValueInSlot(SlotType& slot, void* value) { |
| } |
| } |
| +} // namespace internal |
| + |
| } // namespace base |