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

Unified Diff: tracing/tracing/ui/side_panel/metrics_side_panel.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/side_panel/metrics_side_panel.html
diff --git a/tracing/tracing/ui/side_panel/metrics_side_panel.html b/tracing/tracing/ui/side_panel/metrics_side_panel.html
index 99980ca7d6a4b923e6d041439ef314476850fb85..b9351e5376159b2400ad2a0a6c760a5530b36eee 100644
--- a/tracing/tracing/ui/side_panel/metrics_side_panel.html
+++ b/tracing/tracing/ui/side_panel/metrics_side_panel.html
@@ -89,7 +89,7 @@ tr.exportTo('tr.ui', function() {
* @return {undefined|number}
*/
get metricLatencyMs() {
- return tr.b.Statistics.mean(this.metricLatenciesMs_);
+ return tr.b.math.Statistics.mean(this.metricLatenciesMs_);
},
onMetricChange_: function() {
@@ -139,7 +139,7 @@ tr.exportTo('tr.ui', function() {
},
/**
- * @return {undefined|!tr.b.Range}
+ * @return {undefined|!tr.b.math.Range}
*/
get rangeOfInterest() {
return this.rangeOfInterest_;
@@ -151,7 +151,7 @@ tr.exportTo('tr.ui', function() {
* will be re-run immediately; otherwise, the Recompute button will be
* enabled.
*
- * @param {!tr.b.Range} range
+ * @param {!tr.b.math.Range} range
*/
set rangeOfInterest(range) {
this.rangeOfInterest_ = range;
« no previous file with comments | « tracing/tracing/ui/side_panel/file_size_stats_side_panel.html ('k') | tracing/tracing/ui/side_panel/side_panel_container.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698