| 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;
|
|
|