| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. |
| 6 --> |
| 7 |
| 8 <link rel="import" href="/tracing/metrics/system_health/efficiency_metric.html"> |
| 9 <link rel="import" |
| 10 href="/tracing/metrics/system_health/responsiveness_metric.html"> |
| 11 |
| 12 <script> |
| 13 'use strict'; |
| 14 |
| 15 tr.exportTo('tr.metrics.sh', function() { |
| 16 function SystemHealthMetrics(valueList, model) { |
| 17 tr.metrics.sh.ResponsivenessMetric(valueList, model); |
| 18 tr.metrics.sh.EfficiencyMetric(valueList, model); |
| 19 } |
| 20 |
| 21 tr.metrics.MetricRegistry.register(SystemHealthMetrics); |
| 22 |
| 23 return { |
| 24 SystemHealthMetrics: SystemHealthMetrics |
| 25 }; |
| 26 }); |
| 27 </script> |
| OLD | NEW |