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

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

Issue 2424933003: Rename ValueSet* to HistogramSet*. (Closed)
Patch Set: fix Created 4 years, 2 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/responsiveness_metric_test.html
diff --git a/tracing/tracing/metrics/system_health/responsiveness_metric_test.html b/tracing/tracing/metrics/system_health/responsiveness_metric_test.html
index ed2d33418051a32b521ed949583f3d2f7387c59f..87d17b90b3641884256ec1b2b87895e42444c09b 100644
--- a/tracing/tracing/metrics/system_health/responsiveness_metric_test.html
+++ b/tracing/tracing/metrics/system_health/responsiveness_metric_test.html
@@ -9,7 +9,7 @@ found in the LICENSE file.
<link rel="import" href="/tracing/extras/importer/trace_event_importer.html">
<link rel="import" href="/tracing/metrics/system_health/responsiveness_metric.html">
<link rel="import" href="/tracing/model/slice_group.html">
-<link rel="import" href="/tracing/value/value_set.html">
+<link rel="import" href="/tracing/value/histogram_set.html">
<script>
'use strict';
@@ -51,7 +51,7 @@ tr.b.unittest.testSuite(function() {
test('animationThroughputNoFrames', function() {
var model = createModel([[]]);
- var valueList = new tr.v.ValueSet();
+ var valueList = new tr.v.HistogramSet();
tr.metrics.sh.responsivenessMetric(valueList, model);
var value = tr.b.getOnlyElement(valueList.getValuesNamed(
'animation throughput'));
@@ -60,7 +60,7 @@ tr.b.unittest.testSuite(function() {
test('animationThroughputFramesAndNoFrames', function() {
var model = createModel([[0, 100], []]);
- var valueList = new tr.v.ValueSet();
+ var valueList = new tr.v.HistogramSet();
tr.metrics.sh.responsivenessMetric(valueList, model);
var value = tr.b.getOnlyElement(valueList.getValuesNamed(
'animation throughput'));

Powered by Google App Engine
This is Rietveld 408576698