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

Side by Side Diff: dashboard/overview.html

Issue 12090088: Add Chrome Endure graphs in the overview of the perf dashboard. (Closed) Base URL: https://git.chromium.org/git/chromium/tools/perf.git@master
Patch Set: Created 7 years, 10 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Chrome Perf Overview</title> 3 <title>Chrome Perf Overview</title>
4 <script src="ui/js/common.js"></script> 4 <script src="ui/js/common.js"></script>
5 <script language="javascript"> 5 <script language="javascript">
6 function DisplayGraph(name, graph) { 6 function DisplayGraph(name, graph, history) {
7 document.write('<td><iframe scrolling="no" height="250" width="400" src= "http://build.chromium.org/f/chromium/perf/'); 7 document.write('<td><iframe scrolling="no" height="250" width="400" src= "http://build.chromium.org/f/chromium/perf/');
8 document.write(name); 8 document.write(name);
9 document.write('/report.html?history=50') 9 if (typeof history == 'undefined')
10 history = 50
dennis_jeffrey 2013/02/01 01:33:35 add semicolon
Dai Mikurube (NOT FULLTIME) 2013/02/01 06:29:50 Done.
11 document.write('/report.html?')
12 if (history > 0)
13 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.
10 var params = ParseParams(); 14 var params = ParseParams();
11 if (typeof graph == 'undefined') { 15 if (typeof graph == 'undefined') {
12 if ('graph' in params) { 16 if ('graph' in params) {
13 graph = escape(params.graph); 17 graph = escape(params.graph);
14 } 18 }
15 } else if (graph != null) { 19 } else if (graph != null) {
16 document.write('&header='); 20 document.write('&header=');
17 document.write(graph); 21 document.write(graph);
18 } 22 }
19 if (graph != null) { 23 if (graph != null) {
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 <script>DisplayGraph("linux-release/new-tab-ui-warm");</script> 282 <script>DisplayGraph("linux-release/new-tab-ui-warm");</script>
279 </tr> 283 </tr>
280 <tr> 284 <tr>
281 <script>DisplayGraph("linux-release/sync");</script> 285 <script>DisplayGraph("linux-release/sync");</script>
282 <script>DisplayGraph("linux-release/frame_rate");</script> 286 <script>DisplayGraph("linux-release/frame_rate");</script>
283 <script>DisplayGraph("linux-release/scrolling_benchmark");</script> 287 <script>DisplayGraph("linux-release/scrolling_benchmark");</script>
284 </tr> 288 </tr>
285 <tr> 289 <tr>
286 <script>DisplayGraph("linux-release/kraken");</script> 290 <script>DisplayGraph("linux-release/kraken");</script>
287 <script>DisplayGraph("linux-release/page_cycler_2012Q2-netsim");</sc ript> 291 <script>DisplayGraph("linux-release/page_cycler_2012Q2-netsim");</sc ript>
292 <script>DisplayGraph("endure-linux-rel/control-testControlAttachDeta chDOMTree", "ControlAttachDetachDOMTree-TabMem-Private", 0);</script>
293 </tr>
294 <tr>
295 <script>DisplayGraph("endure-linux-dbg/control-testControlAttachDeta chDOMTree", "ControlAttachDetachDOMTree-l0-DMP", 0);</script>
296 <script>DisplayGraph("endure-linux-rel/gmail-testGmailComposeDiscard ", "GmailComposeDiscard-TabMem-Private", 0);</script>
297 <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
288 </tr> 298 </tr>
289 </table> 299 </table>
290 <h1 id="Chromium-Linux-LowMem">Linux LowMem</h1> 300 <h1 id="Chromium-Linux-LowMem">Linux LowMem</h1>
291 <table> 301 <table>
292 <tr> 302 <tr>
293 <script>DisplayGraph("linux-release-lowmem/moz");</script> 303 <script>DisplayGraph("linux-release-lowmem/moz");</script>
294 <script>DisplayGraph("linux-release-lowmem/intl1");</script> 304 <script>DisplayGraph("linux-release-lowmem/intl1");</script>
295 <script>DisplayGraph("linux-release-lowmem/intl2");</script> 305 <script>DisplayGraph("linux-release-lowmem/intl2");</script>
296 </tr> 306 </tr>
297 <tr> 307 <tr>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/robohornetpro");</ script> 370 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/robohornetpro");</ script>
361 </tr> 371 </tr>
362 <tr> 372 <tr>
363 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/spaceport");</scri pt> 373 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/spaceport");</scri pt>
364 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/image_decoding_ben chmark");</script> 374 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/image_decoding_ben chmark");</script>
365 </tr> 375 </tr>
366 </table> 376 </table>
367 </center> 377 </center>
368 </body> 378 </body>
369 </html> 379 </html>
370
OLDNEW
« 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