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

Unified Diff: storage/browser/quota/usage_tracker.cc

Issue 2105123002: various: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 5 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 | « skia/ext/skia_trace_memory_dump_impl.cc ('k') | ui/gfx/render_text_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/quota/usage_tracker.cc
diff --git a/storage/browser/quota/usage_tracker.cc b/storage/browser/quota/usage_tracker.cc
index 7c96a247b4d8de329360d2ddf53c4e4d40dd14be..03ebecd074b4ffa975502935eeb8f0ac40a3b458 100644
--- a/storage/browser/quota/usage_tracker.cc
+++ b/storage/browser/quota/usage_tracker.cc
@@ -32,7 +32,7 @@ UsageTracker::UsageTracker(const QuotaClientList& clients,
: type_(type),
storage_monitor_(storage_monitor),
weak_factory_(this) {
- for (const auto& client : clients) {
+ for (auto* client : clients) {
if (client->DoesSupport(type)) {
client_tracker_map_[client->id()] =
new ClientUsageTracker(this, client, type, special_storage_policy,
« no previous file with comments | « skia/ext/skia_trace_memory_dump_impl.cc ('k') | ui/gfx/render_text_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698