1<!DOCTYPE html> 2<!-- 3Copyright (c) 2016 The Chromium Authors. All rights reserved. 4Use of this source code is governed by a BSD-style license that can be 5found 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 15tr.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 SystemHealthMetrics.prototype = { 22 __proto__: Function.prototype 23 }; 24 25 tr.metrics.MetricRegistry.register(SystemHealthMetrics); 26 27 return { 28 SystemHealthMetrics: SystemHealthMetrics 29 }; 30}); 31</script> 32