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

Unified Diff: tracing/tracing/extras/importer/trace_event_importer.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/extras/importer/trace_event_importer.html
diff --git a/tracing/tracing/extras/importer/trace_event_importer.html b/tracing/tracing/extras/importer/trace_event_importer.html
index 1441550d5603a7e34e2152c80a58c8fb40015f01..980505ae6f189bd8d7295fb72d6d47544b3159cf 100644
--- a/tracing/tracing/extras/importer/trace_event_importer.html
+++ b/tracing/tracing/extras/importer/trace_event_importer.html
@@ -7,7 +7,7 @@ found in the LICENSE file.
<link rel="import" href="/tracing/base/base64.html">
<link rel="import" href="/tracing/base/color_scheme.html">
-<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/math/range.html">
<link rel="import" href="/tracing/base/scalar.html">
<link rel="import" href="/tracing/base/unit.html">
<link rel="import" href="/tracing/base/utils.html">
@@ -2373,7 +2373,7 @@ tr.exportTo('tr.e.importer', function() {
// the events, all of which have the same dump ID.
// Calculate the range of the global memory dump.
- var globalRange = new tr.b.Range();
+ var globalRange = new tr.b.math.Range();
for (var pid in dumpIdEvents) {
var processEvents = dumpIdEvents[pid];
for (var i = 0; i < processEvents.length; i++)
@@ -2425,7 +2425,7 @@ tr.exportTo('tr.e.importer', function() {
globalMemoryAllocatorDumpsByFullName, levelsOfDetail,
allMemoryAllocatorDumpsByGuid, processEvents, pid, dumpId) {
// Calculate the range of the process memory dump.
- var processRange = new tr.b.Range();
+ var processRange = new tr.b.math.Range();
for (var i = 0; i < processEvents.length; i++)
processRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));
if (processRange.isEmpty)
« no previous file with comments | « tracing/tracing/extras/importer/trace_code_map.html ('k') | tracing/tracing/importer/find_input_expectations.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698