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

Unified Diff: tracing/tracing/value/ui/histogram_set_view.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/value/ui/histogram_set_view.html
diff --git a/tracing/tracing/value/ui/value_set_view.html b/tracing/tracing/value/ui/histogram_set_view.html
similarity index 93%
rename from tracing/tracing/value/ui/value_set_view.html
rename to tracing/tracing/value/ui/histogram_set_view.html
index 95cdbb76c30cf5edc16523c4466e821c5632489f..6c643b188dd1be74fd053bc2e5081484f0a40988 100644
--- a/tracing/tracing/value/ui/value_set_view.html
+++ b/tracing/tracing/value/ui/histogram_set_view.html
@@ -7,9 +7,9 @@ found in the LICENSE file.
<link rel="import" href="/tracing/ui/base/tab_view.html">
<link rel="import" href="/tracing/ui/brushing_state_controller.html">
-<link rel="import" href="/tracing/value/ui/value_set_table.html">
+<link rel="import" href="/tracing/value/ui/histogram_set_table.html">
-<dom-module id="tr-v-ui-value-set-view">
+<dom-module id="tr-v-ui-histogram-set-view">
<template>
<style>
:host {
@@ -17,7 +17,7 @@ found in the LICENSE file.
};
</style>
- <tr-v-ui-value-set-table id="valueSetTable"></tr-v-ui-value-set-table>
+ <tr-v-ui-histogram-set-table id="histograms"></tr-v-ui-histogram-set-table>
</template>
</dom-module>
@@ -185,7 +185,7 @@ tr.exportTo('tr.v.ui', function() {
};
Polymer({
- is: 'tr-v-ui-value-set-view',
+ is: 'tr-v-ui-histogram-set-view',
ready: function() {
this.brushingStateController = new NullBrushingStateController();
@@ -197,10 +197,10 @@ tr.exportTo('tr.v.ui', function() {
},
/**
- * @param {!tr.v.ValueSet} values
+ * @param {!tr.v.HistogramSet} histograms
*/
- set values(values) {
- this.$.valueSetTable.values = values;
+ set histograms(histograms) {
+ this.$.histograms.histograms = histograms;
}
});
« no previous file with comments | « tracing/tracing/value/ui/histogram_set_table_test.html ('k') | tracing/tracing/value/ui/histogram_set_view_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698