| Index: base/threading/thread_local_storage_posix.cc
|
| diff --git a/base/threading/thread_local_storage_posix.cc b/base/threading/thread_local_storage_posix.cc
|
| index ebaf4005d33166466720e09ef21acada4cfbd40d..89edeee1d2a44409644c7678ec72c4705da22292 100644
|
| --- a/base/threading/thread_local_storage_posix.cc
|
| +++ b/base/threading/thread_local_storage_posix.cc
|
| @@ -20,10 +20,6 @@ void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
|
| DCHECK_EQ(ret, 0);
|
| }
|
|
|
| -void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) {
|
| - return pthread_getspecific(key);
|
| -}
|
| -
|
| void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
|
| int ret = pthread_setspecific(key, value);
|
| DCHECK_EQ(ret, 0);
|
|
|