| Index: base/threading/thread_local_storage_win.cc
|
| diff --git a/base/threading/thread_local_storage_win.cc b/base/threading/thread_local_storage_win.cc
|
| index 42a7d016fdd119fbb3bea30bfc94fbec1d7701c3..a9aec31da5305f084ad5fd8319b2d56cd30e4d47 100644
|
| --- a/base/threading/thread_local_storage_win.cc
|
| +++ b/base/threading/thread_local_storage_win.cc
|
| @@ -26,10 +26,6 @@ void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
|
| DCHECK(ret);
|
| }
|
|
|
| -void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) {
|
| - return TlsGetValue(key);
|
| -}
|
| -
|
| void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
|
| BOOL ret = TlsSetValue(key, value);
|
| DCHECK(ret);
|
|
|