summaryrefslogtreecommitdiffstats
path: root/base/threading/thread_local_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/threading/thread_local_storage.h')
-rw-r--r--base/threading/thread_local_storage.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/base/threading/thread_local_storage.h b/base/threading/thread_local_storage.h
index 30cbd47..ca422b9 100644
--- a/base/threading/thread_local_storage.h
+++ b/base/threading/thread_local_storage.h
@@ -86,19 +86,6 @@ class BASE_EXPORT ThreadLocalStorage {
DISALLOW_COPY_AND_ASSIGN(Slot);
};
-#if defined(OS_WIN)
- // Function called when on thread exit to call TLS
- // destructor functions. This function is used internally.
- static void ThreadExit();
-
- private:
- // Function to lazily initialize our thread local storage.
- static void **Initialize();
-
- static long tls_key_;
- static long tls_max_;
-#endif // OS_WIN
-
DISALLOW_COPY_AND_ASSIGN(ThreadLocalStorage);
};