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

Unified Diff: tracing/tracing/model/thread_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/thread.html ('k') | tracing/tracing/model/thread_time_slice.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/thread_test.html
diff --git a/tracing/tracing/model/thread_test.html b/tracing/tracing/model/thread_test.html
index 953e30f9947f95ce0d622c887c9a2cc6a5c32803..293e2bce20200a98d8368792efd333f4922095fd 100644
--- a/tracing/tracing/model/thread_test.html
+++ b/tracing/tracing/model/thread_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">
@@ -147,7 +147,7 @@ tr.b.unittest.testSuite(function() {
newThreadSlice(thread, SCHEDULING_STATE.RUNNING, 8, 2, cpu1),
newThreadSlice(thread, SCHEDULING_STATE.RUNNING, 20, 5, cpu1)
];
- var range = tr.b.Range.fromExplicitRange(1, 22);
+ var range = tr.b.math.Range.fromExplicitRange(1, 22);
var stats = thread.getCpuStatsForRange(range);
assert.deepEqual(stats, {
0: 2,
@@ -169,7 +169,7 @@ tr.b.unittest.testSuite(function() {
newThreadSlice(thread, SCHEDULING_STATE.SLEEPING, 15, 10),
newThreadSlice(thread, SCHEDULING_STATE.RUNNING, 25, 10, cpu1)
];
- var range = tr.b.Range.fromExplicitRange(1, 26);
+ var range = tr.b.math.Range.fromExplicitRange(1, 26);
var stats = thread.getCpuStatsForRange(range);
assert.deepEqual(stats, {
0: 7,
« no previous file with comments | « tracing/tracing/model/thread.html ('k') | tracing/tracing/model/thread_time_slice.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698