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

Unified Diff: tracing/tracing/model/helpers/chrome_renderer_helper.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/helpers/chrome_process_helper.html ('k') | tracing/tracing/model/model.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/helpers/chrome_renderer_helper.html
diff --git a/tracing/tracing/model/helpers/chrome_renderer_helper.html b/tracing/tracing/model/helpers/chrome_renderer_helper.html
index fc61918be785a85c5fdeed4567573f84ed620509..8e9af0449b49da360c4a1a9564e25071db7e6bf2 100644
--- a/tracing/tracing/model/helpers/chrome_renderer_helper.html
+++ b/tracing/tracing/model/helpers/chrome_renderer_helper.html
@@ -4,7 +4,7 @@ Copyright (c) 2014 The Chromium Authors. All rights reserved.
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">
<link rel="import" href="/tracing/extras/chrome/chrome_user_friendly_category_driver.html">
<link rel="import" href="/tracing/model/helpers/chrome_process_helper.html">
@@ -67,7 +67,7 @@ tr.exportTo('tr.model.helpers', function() {
getEventStart, getEventDuration, getEventSelfTime) {
if (mainThread === null) return;
var breakdownTree = {};
- var range = tr.b.Range.fromExplicitRange(rangeStart, rangeEnd);
+ var range = tr.b.math.Range.fromExplicitRange(rangeStart, rangeEnd);
for (var title of
tr.e.chrome.ChromeUserFriendlyCategoryDriver.ALL_TITLES) {
breakdownTree[title] = {total: 0, events: {}};
« no previous file with comments | « tracing/tracing/model/helpers/chrome_process_helper.html ('k') | tracing/tracing/model/model.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698