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

Unified Diff: base/threading/worker_pool_win.cc

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase Created 3 years, 10 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 | « ash/system/chromeos/screen_layout_observer_unittest.cc ('k') | base/time/time_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/threading/worker_pool_win.cc
diff --git a/base/threading/worker_pool_win.cc b/base/threading/worker_pool_win.cc
index 1b16bdccdbf3410525465ad4303dbd3cbd33b6b0..05743ae15a026ccd6fffb974b9a24c1a37d75363 100644
--- a/base/threading/worker_pool_win.cc
+++ b/base/threading/worker_pool_win.cc
@@ -17,7 +17,7 @@ namespace base {
namespace {
ThreadLocalBoolean* GetWorkerPoolRunningOnThisThread() {
- static auto thread_local_boolean = new ThreadLocalBoolean();
+ static auto* thread_local_boolean = new ThreadLocalBoolean();
return thread_local_boolean;
}
« no previous file with comments | « ash/system/chromeos/screen_layout_observer_unittest.cc ('k') | base/time/time_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698