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

Unified Diff: tracing/tracing/ui/timeline_interest_range.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/timeline_interest_range.html
diff --git a/tracing/tracing/ui/timeline_interest_range.html b/tracing/tracing/ui/timeline_interest_range.html
index 33198d990621ec92301baf3442fdace38e3848d7..f7cf97a606b154c79e2ae2e8023025168ee6655d 100644
--- a/tracing/tracing/ui/timeline_interest_range.html
+++ b/tracing/tracing/ui/timeline_interest_range.html
@@ -5,7 +5,7 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
-<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/math/range.html">
<script>
'use strict';
@@ -27,7 +27,7 @@ tr.exportTo('tr.ui', function() {
function TimelineInterestRange(vp) {
this.viewport_ = vp;
- this.range_ = new tr.b.Range();
+ this.range_ = new tr.b.math.Range();
this.leftSelected_ = false;
this.rightSelected_ = false;
@@ -85,7 +85,7 @@ tr.exportTo('tr.ui', function() {
},
asRangeObject: function() {
- var range = new tr.b.Range();
+ var range = new tr.b.math.Range();
range.addRange(this.range_);
return range;
},
« no previous file with comments | « tracing/tracing/ui/timeline_display_transform_animations.html ('k') | tracing/tracing/ui/timeline_viewport.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698