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

Unified Diff: base/threading/watchdog.cc

Issue 2691573003: base: Remove auto raw pointer deduction. (Closed)
Patch Set: update 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 | « base/threading/thread_local_storage.cc ('k') | base/threading/worker_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/threading/watchdog.cc
diff --git a/base/threading/watchdog.cc b/base/threading/watchdog.cc
index a34c132e1bc15624ab7d4c3e470290d7d7bb1962..339cc56a2e33ab38b836d3d742dd44f5c737e0f3 100644
--- a/base/threading/watchdog.cc
+++ b/base/threading/watchdog.cc
@@ -31,7 +31,7 @@ struct StaticData {
};
StaticData* GetStaticData() {
- static auto static_data = new StaticData();
+ static auto* static_data = new StaticData();
return static_data;
}
« no previous file with comments | « base/threading/thread_local_storage.cc ('k') | base/threading/worker_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698