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

Unified Diff: tracing/tracing/metrics/v8/execution_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
« no previous file with comments | « tracing/tracing/metrics/tracing_metric_test.html ('k') | tracing/tracing/metrics/v8/gc_metric_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/metrics/v8/execution_metric_test.html
diff --git a/tracing/tracing/metrics/v8/execution_metric_test.html b/tracing/tracing/metrics/v8/execution_metric_test.html
index d582e5da3a334fcde8552a9f5327874eedd8a54a..f4d9cb683bda664d10c77e1ebb72dc797d4256af 100644
--- a/tracing/tracing/metrics/v8/execution_metric_test.html
+++ b/tracing/tracing/metrics/v8/execution_metric_test.html
@@ -8,7 +8,7 @@ found in the LICENSE file.
<link rel="import" href="/tracing/core/test_utils.html">
<link rel="import" href="/tracing/extras/importer/trace_event_importer.html">
<link rel="import" href="/tracing/metrics/v8/execution_metric.html">
-<link rel="import" href="/tracing/value/value_set.html">
+<link rel="import" href="/tracing/value/histogram_set.html">
<script>
'use strict';
@@ -16,7 +16,7 @@ found in the LICENSE file.
tr.b.unittest.testSuite(function() {
test('executionMetricBasic', function() {
var model = tr.c.TestUtils.newModel();
- var values = new tr.v.ValueSet();
+ var values = new tr.v.HistogramSet();
tr.metrics.v8.executionMetric(values, model);
@@ -61,7 +61,7 @@ tr.b.unittest.testSuite(function() {
var model = tr.c.TestUtils.newModelWithEvents(JSON.stringify(events), {
shiftWorldToZero: false
});
- var values = new tr.v.ValueSet();
+ var values = new tr.v.HistogramSet();
tr.metrics.v8.executionMetric(values, model);
var value = values.getValuesNamed('v8_execution_wall_total')[0];
« no previous file with comments | « tracing/tracing/metrics/tracing_metric_test.html ('k') | tracing/tracing/metrics/v8/gc_metric_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698