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

Unified Diff: tracing/tracing/ui/tracks/stacked_bars_track.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/ui/tracks/slice_group_track.html ('k') | tracing/tracing/ui/tracks/track.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/ui/tracks/stacked_bars_track.html
diff --git a/tracing/tracing/ui/tracks/stacked_bars_track.html b/tracing/tracing/ui/tracks/stacked_bars_track.html
index 3118bd4d3a4ec2db80bd7d39d4609ad0c346c37f..e618bc48027677102995833f1cdfe85261da91db 100644
--- a/tracing/tracing/ui/tracks/stacked_bars_track.html
+++ b/tracing/tracing/ui/tracks/stacked_bars_track.html
@@ -65,7 +65,7 @@ tr.exportTo('tr.ui.tracks', function() {
var snapshots = this.objectInstance_.snapshots;
var maxBounds = this.objectInstance_.parent.model.bounds.max;
- tr.b.iterateOverIntersectingIntervals(
+ tr.b.math.iterateOverIntersectingIntervals(
snapshots,
function(x) { return x.ts; },
function(x, i) {
@@ -110,7 +110,7 @@ tr.exportTo('tr.ui.tracks', function() {
addClosestEventToSelection: function(worldX, worldMaxDist, loY, hiY,
selection) {
- var snapshot = tr.b.findClosestElementInSortedArray(
+ var snapshot = tr.b.math.findClosestElementInSortedArray(
this.objectInstance_.snapshots,
function(x) { return x.ts; },
worldX,
« no previous file with comments | « tracing/tracing/ui/tracks/slice_group_track.html ('k') | tracing/tracing/ui/tracks/track.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698