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

Unified Diff: tracing/tracing/value/diagnostics/iteration_info.html

Issue 2341623002: Display Histograms in value-set-table-cells. (Closed)
Patch Set: . Created 4 years, 3 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/ui/tracks/drawing_container.html ('k') | tracing/tracing/value/histogram.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/value/diagnostics/iteration_info.html
diff --git a/tracing/tracing/value/diagnostics/iteration_info.html b/tracing/tracing/value/diagnostics/iteration_info.html
index 582cf6c84095b56cb59466a4be3671e8520006e1..5ce2faf8f9d47b8de35d98d554b6885a503da53e 100644
--- a/tracing/tracing/value/diagnostics/iteration_info.html
+++ b/tracing/tracing/value/diagnostics/iteration_info.html
@@ -23,9 +23,9 @@ tr.exportTo('tr.v.d', function() {
this.productVersion_ = '';
this.storyDisplayName_ = '';
this.storyGroupingKeys_ = {};
- this.storyRepeatCounter_ = 0;
+ this.storyRepeatCounter_ = undefined;
this.storyUrl_ = '';
- this.storysetRepeatCounter_ = 0;
+ this.storysetRepeatCounter_ = undefined;
if (opt_info)
this.addInfo(opt_info);
@@ -54,11 +54,11 @@ tr.exportTo('tr.v.d', function() {
this.storyDisplayName_ = info.storyDisplayName;
if (info.storyGroupingKeys)
this.storyGroupingKeys_ = info.storyGroupingKeys;
- if (info.storyRepeatCounter)
+ if (info.storyRepeatCounter !== undefined)
this.storyRepeatCounter_ = info.storyRepeatCounter;
if (info.storyUrl)
this.storyUrl_ = info.storyUrl;
- if (info.storysetRepeatCounter)
+ if (info.storysetRepeatCounter !== undefined)
this.storysetRepeatCounter_ = info.storysetRepeatCounter;
// From platform tracing metadata
« no previous file with comments | « tracing/tracing/ui/tracks/drawing_container.html ('k') | tracing/tracing/value/histogram.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698