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

Unified Diff: tracing/tracing/base/unittest/test_case.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
« no previous file with comments | « tracing/tracing/base/statistics_test.html ('k') | tracing/tracing/base/unittest/test_suite.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/unittest/test_case.html
diff --git a/tracing/tracing/base/unittest/test_case.html b/tracing/tracing/base/unittest/test_case.html
index 447d03b708abbfc82f7ae85b2b53cfc760074c66..154d313260b7787a24fe59d3da4ae9f01a8d32cf 100644
--- a/tracing/tracing/base/unittest/test_case.html
+++ b/tracing/tracing/base/unittest/test_case.html
@@ -116,8 +116,8 @@ tr.exportTo('tr.b.unittest', function() {
var durationStrings = durations.map(function(d) {
return d.toFixed(2) + 'ms';
});
- var average = tr.b.Statistics.mean(durations);
- var min = tr.b.Statistics.min(durations);
+ var average = tr.b.math.Statistics.mean(durations);
+ var min = tr.b.math.Statistics.min(durations);
var summaryString = ' [';
summaryString += 'min ' + min.toFixed(2) + 'ms, ';
« no previous file with comments | « tracing/tracing/base/statistics_test.html ('k') | tracing/tracing/base/unittest/test_suite.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698