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

Unified Diff: tracing/tracing/metrics/cpu_process_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/cpu_process_metric_test.html
diff --git a/tracing/tracing/metrics/cpu_process_metric_test.html b/tracing/tracing/metrics/cpu_process_metric_test.html
index cc0c8c103ced4c8efceb2da64f00d0f3bd42a808..dba082bc47bf958ab377876d61e74b76bb1169b3 100644
--- a/tracing/tracing/metrics/cpu_process_metric_test.html
+++ b/tracing/tracing/metrics/cpu_process_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/cpu_process_metric.html">
-<link rel="import" href="/tracing/value/value_set.html">
+<link rel="import" href="/tracing/value/histogram_set.html">
<script>
'use strict';
@@ -20,7 +20,7 @@ tr.b.unittest.testSuite(function() {
}
test('cpuProcessMetric_noData', function() {
- var values = new tr.v.ValueSet();
+ var values = new tr.v.HistogramSet();
var events = [
{name: 'a', args: {}, pid: 52, ts: 524, cat: 'foo', tid: 53, ph: 'B'},
{name: 'a', args: {}, pid: 52, ts: 560, cat: 'foo', tid: 53, ph: 'B'}
@@ -30,7 +30,7 @@ tr.b.unittest.testSuite(function() {
});
test('cpuProcessMetric_singleSnapshots', function() {
- var values = new tr.v.ValueSet();
+ var values = new tr.v.HistogramSet();
var events = [
{
'name': 'CPUSnapshots',
@@ -65,7 +65,7 @@ tr.b.unittest.testSuite(function() {
});
test('cpuProcessMetric_multipleSnapshots', function() {
- var values = new tr.v.ValueSet();
+ var values = new tr.v.HistogramSet();
var events = [
{
'name': 'CPUSnapshots',
« no previous file with comments | « tracing/tracing/metrics/compare_samples_cmdline.html ('k') | tracing/tracing/metrics/metric_map_function.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698