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

Unified Diff: tracing/tracing/model/cpu_test.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/cpu_slice.html ('k') | tracing/tracing/model/device.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/cpu_test.html
diff --git a/tracing/tracing/model/cpu_test.html b/tracing/tracing/model/cpu_test.html
index 06c406d82cde2077cd57c50412ca2c5c99678584..7db87f5dad8bb57b0c8b67d8be4482707f9651f8 100644
--- a/tracing/tracing/model/cpu_test.html
+++ b/tracing/tracing/model/cpu_test.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">
<link rel="import" href="/tracing/core/test_utils.html">
<link rel="import" href="/tracing/model/model.html">
@@ -191,7 +191,7 @@ tr.b.unittest.testSuite(function() {
series.addCounterSample(80, 500000);
series.addCounterSample(100, 300000);
- var range = tr.b.Range.fromExplicitRange(10, 90);
+ var range = tr.b.math.Range.fromExplicitRange(10, 90);
var stats = cpu.getFreqStatsForRange(range);
assert.equal(stats[100000], 60);
assert.equal(stats[300000], 10);
« no previous file with comments | « tracing/tracing/model/cpu_slice.html ('k') | tracing/tracing/model/device.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698