Chromium Code Reviews| Index: dashboard/overview.html |
| diff --git a/dashboard/overview.html b/dashboard/overview.html |
| index 5adcee852909cf7bae45c0e6783d3f2ea13be81c..4d9a59f4668a20b19e5502621d4cf228aeae4bb7 100644 |
| --- a/dashboard/overview.html |
| +++ b/dashboard/overview.html |
| @@ -3,10 +3,14 @@ |
| <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 |
|
dennis_jeffrey
2013/02/01 01:33:35
add semicolon
Dai Mikurube (NOT FULLTIME)
2013/02/01 06:29:50
Done.
|
| + document.write('/report.html?') |
| + if (history > 0) |
| + document.write('history=' + history) |
|
dennis_jeffrey
2013/02/01 01:33:35
add semicolon
Dai Mikurube (NOT FULLTIME)
2013/02/01 06:29:50
Done.
|
| var params = ParseParams(); |
| if (typeof graph == 'undefined') { |
| if ('graph' in params) { |
| @@ -285,6 +289,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> |
| + </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> |
|
dennis_jeffrey
2013/02/01 01:33:35
how did you decide upon this set of graphs to disp
Dai Mikurube (NOT FULLTIME)
2013/02/01 06:29:50
I chose the number, four, since the overview.html
dennis_jeffrey
2013/02/04 20:54:54
I see. Rather than adding a small subset of the C
|
| </tr> |
| </table> |
| <h1 id="Chromium-Linux-LowMem">Linux LowMem</h1> |
| @@ -367,4 +377,3 @@ |
| </center> |
| </body> |
| </html> |
| - |