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/model/event_set.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/model/event_container.html ('k') | tracing/tracing/model/frame.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/event_set.html
diff --git a/tracing/tracing/model/event_set.html b/tracing/tracing/model/event_set.html
index 91c98eb25bdbb81f5e1e604fe6fa8526bbaa9d4c..d2dfd526045b75dfeab19e9d9cb081a52531fb0f 100644
--- a/tracing/tracing/model/event_set.html
+++ b/tracing/tracing/model/event_set.html
@@ -8,7 +8,7 @@ found in the LICENSE file.
<link rel="import" href="/tracing/base/event.html">
<link rel="import" href="/tracing/base/guid.html">
<link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/math/range.html">
<link rel="import" href="/tracing/model/event_registry.html">
<script>
@@ -25,7 +25,7 @@ tr.exportTo('tr.model', function() {
* @constructor
*/
function EventSet(opt_events) {
- this.bounds_ = new tr.b.Range();
+ this.bounds_ = new tr.b.math.Range();
this.events_ = new Set();
this.guid_ = tr.b.GUID.allocateSimple();
@@ -68,7 +68,7 @@ tr.exportTo('tr.model', function() {
},
clear: function() {
- this.bounds_ = new tr.b.Range();
+ this.bounds_ = new tr.b.math.Range();
this.events_.clear();
},
« no previous file with comments | « tracing/tracing/model/event_container.html ('k') | tracing/tracing/model/frame.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698