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

Side by Side Diff: tracing/tracing/metrics/system_health/memory_metric.html

Issue 2995843002: Merge iteration_helpers into utils.html. (Closed)
Patch Set: Created 3 years, 4 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <link rel="import" href="/tracing/base/iteration_helpers.html">
9 <link rel="import" href="/tracing/base/math/range.html"> 8 <link rel="import" href="/tracing/base/math/range.html">
10 <link rel="import" href="/tracing/base/multi_dimensional_view.html"> 9 <link rel="import" href="/tracing/base/multi_dimensional_view.html">
11 <link rel="import" href="/tracing/base/unit.html"> 10 <link rel="import" href="/tracing/base/unit.html">
11 <link rel="import" href="/tracing/base/utils.html">
12 <link rel="import" href="/tracing/extras/chrome/chrome_processes.html"> 12 <link rel="import" href="/tracing/extras/chrome/chrome_processes.html">
13 <link rel="import" href="/tracing/metrics/metric_registry.html"> 13 <link rel="import" href="/tracing/metrics/metric_registry.html">
14 <link rel="import" href="/tracing/model/container_memory_dump.html"> 14 <link rel="import" href="/tracing/model/container_memory_dump.html">
15 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html"> 15 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html">
16 <link rel="import" href="/tracing/model/memory_allocator_dump.html"> 16 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
17 <link rel="import" href="/tracing/value/diagnostics/breakdown.html"> 17 <link rel="import" href="/tracing/value/diagnostics/breakdown.html">
18 <link rel="import" href="/tracing/value/histogram.html"> 18 <link rel="import" href="/tracing/value/histogram.html">
19 19
20 <script> 20 <script>
21 'use strict'; 21 'use strict';
(...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1211 1211
1212 tr.metrics.MetricRegistry.register(memoryMetric, { 1212 tr.metrics.MetricRegistry.register(memoryMetric, {
1213 supportsRangeOfInterest: true 1213 supportsRangeOfInterest: true
1214 }); 1214 });
1215 1215
1216 return { 1216 return {
1217 memoryMetric, 1217 memoryMetric,
1218 }; 1218 };
1219 }); 1219 });
1220 </script> 1220 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698