https://bugs.webkit.org/show_bug.cgi?id=155266
Reviewed by Chris Dumez.
Added the "Size" metric and use bytes as its unit.
* public/js/helper-classes.js:
(PerfTestRuns):
* public/v2/data.js:
(RunsData.unitFromMetricName):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@197903
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-03-09 Ryosuke Niwa <rniwa@webkit.org>
+
+ Add Size metric to perf dashboard
+ https://bugs.webkit.org/show_bug.cgi?id=155266
+
+ Reviewed by Chris Dumez.
+
+ Added the "Size" metric and use bytes as its unit.
+
+ * public/js/helper-classes.js:
+ (PerfTestRuns):
+ * public/v2/data.js:
+ (RunsData.unitFromMetricName):
+
2016-02-20 Ryosuke Niwa <rniwa@webkit.org>
Add the support for universal slave password
'Malloc': 'B',
'Heap': 'B',
'Allocations': 'B',
+ 'Size': 'B',
'Score': 'pt'}[suffix];
// We can't do this in PerfTestResult because all results for each metric need to share the same unit and the same scaling factor.
'Malloc': 'B',
'Heap': 'B',
'Allocations': 'B',
+ 'Size': 'B',
'Score': 'pt',
}[suffix];
return unit;