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

Unified Diff: tools/telemetry/support/html_output/results-template.html

Issue 22763002: [Telemetry] Categorize memory vs. time metrics properly for page cycler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/support/html_output/results-template.html
diff --git a/tools/telemetry/support/html_output/results-template.html b/tools/telemetry/support/html_output/results-template.html
index b0b84c7f7f134c9313c512c72533c5a8370bd94f..898d057822fe558fc00660aa8d89f9eb14b1b313 100644
--- a/tools/telemetry/support/html_output/results-template.html
+++ b/tools/telemetry/support/html_output/results-template.html
@@ -211,7 +211,9 @@ function PerfTestMetric(name, metric, unit, isImportant) {
return (unit == 'kb' ||
unit == 'KB' ||
unit == 'MB' ||
- unit == 'bytes');
+ unit == 'bytes' ||
+ !metric.indexOf('V8.') ||
+ metric == 'processes');
}
this.addResult = function (newResult) {
testResults.push(newResult);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698