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

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

Issue 1447563002: Implement frame attribution (FrameBlamer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments. Created 4 years, 9 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 5061f9d2bb9d0432b0a45decf2260bdc610d0a0d..5932adca954d3636311f7e1a4b388f2be3f718a9 100644
--- a/components/scheduler/base/time_domain.cc
+++ b/components/scheduler/base/time_domain.cc
@@ -228,12 +228,12 @@ void TimeDomain::AsValueInto(base::trace_event::TracedValue* state) const {
state->BeginArray("updatable_queue_set");
for (auto& queue : updatable_queue_set_)
state->AppendString(queue->GetName());
+ state->EndArray();
benjhayden 2016/03/21 17:32:56 Looks like a bugfix for a separate CL?
Sami 2016/03/21 19:16:29 Done (landed separately).
state->SetInteger("registered_delay_count", delayed_wakeup_multimap_.size());
if (!delayed_wakeup_multimap_.empty()) {
base::TimeDelta delay = delayed_wakeup_multimap_.begin()->first - Now();
state->SetDouble("next_delay_ms", delay.InMillisecondsF());
}
- state->EndArray();
AsValueIntoInternal(state);
state->EndDictionary();
}

Powered by Google App Engine
This is Rietveld 408576698