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

Unified Diff: tracing/tracing/ui/analysis/multi_event_summary_table.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_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];
});
}
« no previous file with comments | « tracing/tracing/ui/analysis/multi_event_summary.html ('k') | tracing/tracing/ui/analysis/multi_object_sub_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698