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

Unified Diff: ui/latency/latency_info.cc

Issue 2954473002: Record accuracy of expected queueing time metric. (Closed)
Patch Set: Fix include. Created 3 years, 6 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: ui/latency/latency_info.cc
diff --git a/ui/latency/latency_info.cc b/ui/latency/latency_info.cc
index 9427c4ccc308e9eaa71f9a60b5b5df36b69c1cd6..b7df0c5355e819c8ab25c54e0729ed86f8deb503 100644
--- a/ui/latency/latency_info.cc
+++ b/ui/latency/latency_info.cc
@@ -171,6 +171,9 @@ void LatencyInfo::CopyLatencyFrom(const LatencyInfo& other,
lc.second.event_count);
}
}
+
+ expected_queueing_time_on_dispatch_ =
+ other.expected_queueing_time_on_dispatch_;
}
void LatencyInfo::AddNewLatencyFrom(const LatencyInfo& other) {
@@ -183,6 +186,9 @@ void LatencyInfo::AddNewLatencyFrom(const LatencyInfo& other) {
lc.second.event_count);
}
}
+
+ expected_queueing_time_on_dispatch_ =
+ other.expected_queueing_time_on_dispatch_;
}
void LatencyInfo::AddLatencyNumber(LatencyComponentType component,

Powered by Google App Engine
This is Rietveld 408576698