| Index: tracing/tracing/ui/analysis/multi_event_summary_table.html
|
| diff --git a/tracing/tracing/ui/analysis/multi_event_summary_table.html b/tracing/tracing/ui/analysis/multi_event_summary_table.html
|
| index fcd506a8def6be4f33133e5b1bd7bf6082efcdce..6fc55d7aea5feedc050a1218b0b1e71b0da56eb8 100644
|
| --- a/tracing/tracing/ui/analysis/multi_event_summary_table.html
|
| +++ b/tracing/tracing/ui/analysis/multi_event_summary_table.html
|
| @@ -7,8 +7,8 @@ found in the LICENSE file.
|
|
|
| <link rel="import" href="/tracing/base/base.html">
|
| <link rel="import" href="/tracing/base/iteration_helpers.html">
|
| -<link rel="import" href="/tracing/base/range.html">
|
| -<link rel="import" href="/tracing/base/statistics.html">
|
| +<link rel="import" href="/tracing/base/math/range.html">
|
| +<link rel="import" href="/tracing/base/math/statistics.html">
|
| <link rel="import" href="/tracing/base/unit.html">
|
| <link rel="import" href="/tracing/model/event_set.html">
|
| <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
|
| @@ -86,7 +86,7 @@ Polymer({
|
| return tr.v.ui.createScalarSpan(row.duration, {
|
| unit: tr.b.Unit.byName.timeDurationInMs,
|
| customContextRange: row.totalsRow ? undefined :
|
| - tr.b.Range.fromExplicitRange(0, maxValues.duration),
|
| + tr.b.math.Range.fromExplicitRange(0, maxValues.duration),
|
| ownerDocument: ownerDocument,
|
| });
|
| },
|
| @@ -104,7 +104,7 @@ Polymer({
|
| return tr.v.ui.createScalarSpan(row.cpuDuration, {
|
| unit: tr.b.Unit.byName.timeDurationInMs,
|
| customContextRange: row.totalsRow ? undefined :
|
| - tr.b.Range.fromExplicitRange(0, maxValues.cpuDuration),
|
| + tr.b.math.Range.fromExplicitRange(0, maxValues.cpuDuration),
|
| ownerDocument: ownerDocument,
|
| });
|
| },
|
| @@ -122,7 +122,7 @@ Polymer({
|
| return tr.v.ui.createScalarSpan(row.selfTime, {
|
| unit: tr.b.Unit.byName.timeDurationInMs,
|
| customContextRange: row.totalsRow ? undefined :
|
| - tr.b.Range.fromExplicitRange(0, maxValues.selfTime),
|
| + tr.b.math.Range.fromExplicitRange(0, maxValues.selfTime),
|
| ownerDocument: ownerDocument,
|
| });
|
| },
|
| @@ -140,7 +140,7 @@ Polymer({
|
| return tr.v.ui.createScalarSpan(row.cpuSelfTime, {
|
| unit: tr.b.Unit.byName.timeDurationInMs,
|
| customContextRange: row.totalsRow ? undefined :
|
| - tr.b.Range.fromExplicitRange(0, maxValues.cpuSelfTime),
|
| + tr.b.math.Range.fromExplicitRange(0, maxValues.cpuSelfTime),
|
| ownerDocument: ownerDocument,
|
| });
|
| },
|
| @@ -159,7 +159,7 @@ Polymer({
|
| return tr.v.ui.createScalarSpan(totalDuration / row.numEvents, {
|
| unit: tr.b.Unit.byName.timeDurationInMs,
|
| customContextRange: row.totalsRow ? undefined :
|
| - tr.b.Range.fromExplicitRange(0, maxValues.duration),
|
| + tr.b.math.Range.fromExplicitRange(0, maxValues.duration),
|
| ownerDocument: ownerDocument,
|
| });
|
| },
|
| @@ -313,7 +313,7 @@ Polymer({
|
|
|
| if (this.eventsHaveDuration) {
|
| for (var column in maxValues) {
|
| - maxValues[column] = tr.b.Statistics.max(rows, function(event) {
|
| + maxValues[column] = tr.b.math.Statistics.max(rows, function(event) {
|
| return event[column];
|
| });
|
| }
|
|
|