Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Unified Diff: base/threading/thread_local_storage_win.cc

Issue 2948003003: Inline PlatformThreadLocalStorage::GetTLSValue (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/threading/thread_local_storage_posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « base/threading/thread_local_storage_posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698