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

Unified Diff: components/scheduler/base/time_domain.cc

Issue 2110663002: components: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase+one fix 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
Index: components/scheduler/base/time_domain.cc
diff --git a/components/scheduler/base/time_domain.cc b/components/scheduler/base/time_domain.cc
index 510ad7964baadf8824d41fb02044a9e07d71c1f1..0e3144cdc750c716dbb8ec26ed2e012fa7663b18 100644
--- a/components/scheduler/base/time_domain.cc
+++ b/components/scheduler/base/time_domain.cc
@@ -200,7 +200,7 @@ void TimeDomain::AsValueInto(base::trace_event::TracedValue* state) const {
state->BeginDictionary();
state->SetString("name", GetName());
state->BeginArray("updatable_queue_set");
- for (auto& queue : updatable_queue_set_)
+ for (auto* queue : updatable_queue_set_)
state->AppendString(queue->GetName());
state->EndArray();
state->SetInteger("registered_delay_count", delayed_wakeup_multimap_.size());
« no previous file with comments | « components/scheduler/base/task_queue_manager.cc ('k') | components/scheduler/renderer/renderer_scheduler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698