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

Unified Diff: tracing/tracing/metrics/system_health/expected_queueing_time_metric.html

Issue 2771723003: [tracing] Move math utilities from base into their own subdirectory (attempt 2) (Closed)
Patch Set: rebase Created 3 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: tracing/tracing/metrics/system_health/expected_queueing_time_metric.html
diff --git a/tracing/tracing/metrics/system_health/expected_queueing_time_metric.html b/tracing/tracing/metrics/system_health/expected_queueing_time_metric.html
index aa090f65233a4eb6d270cb9518eede966485565a..a34e0ac38549c9bf843b52f991eb80c9b445a531 100644
--- a/tracing/tracing/metrics/system_health/expected_queueing_time_metric.html
+++ b/tracing/tracing/metrics/system_health/expected_queueing_time_metric.html
@@ -125,7 +125,7 @@ tr.exportTo('tr.metrics.sh', function() {
continue;
}
const interactiveWindow =
- tr.b.Range.fromExplicitRange(interactiveTimestamps[0], Infinity)
+ tr.b.math.Range.fromExplicitRange(interactiveTimestamps[0], Infinity)
.findIntersection(rendererHelper.mainThread.bounds);
interactiveHistogram.addSample(
tr.e.chrome.maxExpectedQueueingTimeInSlidingWindow(
@@ -247,7 +247,7 @@ tr.exportTo('tr.metrics.sh', function() {
continue;
}
const interactiveWindow =
- tr.b.Range.fromExplicitRange(interactiveTimestamps[0], Infinity)
+ tr.b.math.Range.fromExplicitRange(interactiveTimestamps[0], Infinity)
.findIntersection(rendererHelper.mainThread.bounds);
interactiveHistogram.addSample(
tr.e.chrome.maxExpectedQueueingTimeInSlidingWindow(

Powered by Google App Engine
This is Rietveld 408576698