Chromium Code Reviews| Index: dashboard/overview.html |
| diff --git a/dashboard/overview.html b/dashboard/overview.html |
| index 5adcee852909cf7bae45c0e6783d3f2ea13be81c..67a2a36154d784649b233e8cc3d8bb1ebe225aac 100644 |
| --- a/dashboard/overview.html |
| +++ b/dashboard/overview.html |
| @@ -3,10 +3,16 @@ |
| <title>Chrome Perf Overview</title> |
| <script src="ui/js/common.js"></script> |
| <script language="javascript"> |
| - function DisplayGraph(name, graph) { |
| + function DisplayGraph(name, graph, history) { |
| document.write('<td><iframe scrolling="no" height="250" width="400" src="http://build.chromium.org/f/chromium/perf/'); |
| document.write(name); |
| - document.write('/report.html?history=50') |
| + if (typeof history == 'undefined') { |
| + history = 50; |
| + } |
| + document.write('/report.html?'); |
| + if (history > 0) { |
| + document.write('history=' + history); |
| + } |
| var params = ParseParams(); |
| if (typeof graph == 'undefined') { |
| if ('graph' in params) { |
| @@ -285,6 +291,12 @@ |
| <tr> |
| <script>DisplayGraph("linux-release/kraken");</script> |
| <script>DisplayGraph("linux-release/page_cycler_2012Q2-netsim");</script> |
| + <script>DisplayGraph("endure-linux-rel/control-testControlAttachDetachDOMTree", "ControlAttachDetachDOMTree-TabMem-Private", 0);</script> |
|
Mike Stip (use stip instead)
2013/02/04 18:53:13
I noticed that none of the other calls to DisplayG
Dai Mikurube (NOT FULLTIME)
2013/02/05 00:13:40
It's tested locally. And, the main reason why we
|
| + </tr> |
| + <tr> |
| + <script>DisplayGraph("endure-linux-dbg/control-testControlAttachDetachDOMTree", "ControlAttachDetachDOMTree-l0-DMP", 0);</script> |
| + <script>DisplayGraph("endure-linux-rel/gmail-testGmailComposeDiscard", "GmailComposeDiscard-TabMem-Private", 0);</script> |
| + <script>DisplayGraph("endure-linux-dbg/gmail-testGmailComposeDiscard", "GmailComposeDiscard-l0-DMP", 0);</script> |
| </tr> |
| </table> |
| <h1 id="Chromium-Linux-LowMem">Linux LowMem</h1> |
| @@ -367,4 +379,3 @@ |
| </center> |
| </body> |
| </html> |
| - |