summaryrefslogtreecommitdiffstats
path: root/base/thread_local_win.cc
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-11 17:20:10 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-11 17:20:10 +0000
commit29813a64ab632f758361714c0aa90672b0621fd2 (patch)
treeceb20b4d3647b8d09609a419096d94cebbc806cb /base/thread_local_win.cc
parent8b99df89198cdcd2674999099e21ee8d7b7678d0 (diff)
downloadchromium_src-29813a64ab632f758361714c0aa90672b0621fd2.zip
chromium_src-29813a64ab632f758361714c0aa90672b0621fd2.tar.gz
chromium_src-29813a64ab632f758361714c0aa90672b0621fd2.tar.bz2
Move base::ThreadLocalPlatform to base::internal::ThreadLocalPlatform.
BUG=none TEST=none Review URL: http://codereview.chromium.org/4744002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@65812 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/thread_local_win.cc')
-rw-r--r--base/thread_local_win.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/thread_local_win.cc b/base/thread_local_win.cc
index 368c0d6..ea14a67 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