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

Unified Diff: tracing/tracing/metrics/system_health/system_health_metrics.html

Issue 2011403002: Rename all tbm2 metrics to start with lowercase & add PRESUBMIT (Closed) Base URL: https://github.com/catapult-project/catapult@master
Patch Set: Update SystemHealthMetric in other files Created 4 years, 7 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/metrics/system_health/system_health_metrics.html
diff --git a/tracing/tracing/metrics/system_health/system_health_metrics.html b/tracing/tracing/metrics/system_health/system_health_metrics.html
index 9273f7d4f43cdf2dcedaa5a29d39cae9d7057498..46adc1e63333edae55730a83d23c1d09e7fd8445 100644
--- a/tracing/tracing/metrics/system_health/system_health_metrics.html
+++ b/tracing/tracing/metrics/system_health/system_health_metrics.html
@@ -15,17 +15,17 @@ found in the LICENSE file.
'use strict';
tr.exportTo('tr.metrics.sh', function() {
- function SystemHealthMetrics(values, model) {
+ function systemHealthMetrics(values, model) {
tr.metrics.sh.responsivenessMetric(values, model);
- tr.metrics.sh.EfficiencyMetric(values, model);
+ tr.metrics.sh.efficiencyMetric(values, model);
tr.metrics.sh.hazardMetric(values, model);
- tr.metrics.sh.PowerMetric(values, model);
+ tr.metrics.sh.powerMetric(values, model);
}
- tr.metrics.MetricRegistry.register(SystemHealthMetrics);
+ tr.metrics.MetricRegistry.register(systemHealthMetrics);
return {
- SystemHealthMetrics: SystemHealthMetrics
+ systemHealthMetrics: systemHealthMetrics
};
});
</script>
« no previous file with comments | « tracing/tracing/metrics/system_health/power_metric_test.html ('k') | tracing/tracing/ui/side_panel/metrics_side_panel.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698