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

Unified Diff: tracing/tracing/ui/analysis/multi_event_sub_view.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/ui/analysis/multi_event_sub_view.html
diff --git a/tracing/tracing/ui/analysis/multi_event_sub_view.html b/tracing/tracing/ui/analysis/multi_event_sub_view.html
index d7e494a70c6d07765c61962f5725cb458da26ea7..a33b3b4586a65e51fe005d3599a4d9f313c5e3fa 100644
--- a/tracing/tracing/ui/analysis/multi_event_sub_view.html
+++ b/tracing/tracing/ui/analysis/multi_event_sub_view.html
@@ -152,7 +152,7 @@ tr.exportTo('tr.ui.analysis', function() {
buildHistogram_(selectedKey) {
var leftBoundary = Number.MAX_VALUE;
- var rightBoundary = tr.b.Statistics.percentile(
+ var rightBoundary = tr.b.math.Statistics.percentile(
this.currentSelection_, 0.95,
function(value) {
leftBoundary = Math.min(leftBoundary, value[selectedKey]);

Powered by Google App Engine
This is Rietveld 408576698