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

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: addressed the comments. 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;
11 }
12 document.write('/report.html?');
13 if (history > 0) {
14 document.write('history=' + history);
15 }
10 var params = ParseParams(); 16 var params = ParseParams();
11 if (typeof graph == 'undefined') { 17 if (typeof graph == 'undefined') {
12 if ('graph' in params) { 18 if ('graph' in params) {
13 graph = escape(params.graph); 19 graph = escape(params.graph);
14 } 20 }
15 } else if (graph != null) { 21 } else if (graph != null) {
16 document.write('&header='); 22 document.write('&header=');
17 document.write(graph); 23 document.write(graph);
18 } 24 }
19 if (graph != null) { 25 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> 284 <script>DisplayGraph("linux-release/new-tab-ui-warm");</script>
279 </tr> 285 </tr>
280 <tr> 286 <tr>
281 <script>DisplayGraph("linux-release/sync");</script> 287 <script>DisplayGraph("linux-release/sync");</script>
282 <script>DisplayGraph("linux-release/frame_rate");</script> 288 <script>DisplayGraph("linux-release/frame_rate");</script>
283 <script>DisplayGraph("linux-release/scrolling_benchmark");</script> 289 <script>DisplayGraph("linux-release/scrolling_benchmark");</script>
284 </tr> 290 </tr>
285 <tr> 291 <tr>
286 <script>DisplayGraph("linux-release/kraken");</script> 292 <script>DisplayGraph("linux-release/kraken");</script>
287 <script>DisplayGraph("linux-release/page_cycler_2012Q2-netsim");</sc ript> 293 <script>DisplayGraph("linux-release/page_cycler_2012Q2-netsim");</sc ript>
294 <script>DisplayGraph("endure-linux-rel/control-testControlAttachDeta chDOMTree", "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
295 </tr>
296 <tr>
297 <script>DisplayGraph("endure-linux-dbg/control-testControlAttachDeta chDOMTree", "ControlAttachDetachDOMTree-l0-DMP", 0);</script>
298 <script>DisplayGraph("endure-linux-rel/gmail-testGmailComposeDiscard ", "GmailComposeDiscard-TabMem-Private", 0);</script>
299 <script>DisplayGraph("endure-linux-dbg/gmail-testGmailComposeDiscard ", "GmailComposeDiscard-l0-DMP", 0);</script>
288 </tr> 300 </tr>
289 </table> 301 </table>
290 <h1 id="Chromium-Linux-LowMem">Linux LowMem</h1> 302 <h1 id="Chromium-Linux-LowMem">Linux LowMem</h1>
291 <table> 303 <table>
292 <tr> 304 <tr>
293 <script>DisplayGraph("linux-release-lowmem/moz");</script> 305 <script>DisplayGraph("linux-release-lowmem/moz");</script>
294 <script>DisplayGraph("linux-release-lowmem/intl1");</script> 306 <script>DisplayGraph("linux-release-lowmem/intl1");</script>
295 <script>DisplayGraph("linux-release-lowmem/intl2");</script> 307 <script>DisplayGraph("linux-release-lowmem/intl2");</script>
296 </tr> 308 </tr>
297 <tr> 309 <tr>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/robohornetpro");</ script> 372 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/robohornetpro");</ script>
361 </tr> 373 </tr>
362 <tr> 374 <tr>
363 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/spaceport");</scri pt> 375 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/spaceport");</scri pt>
364 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/image_decoding_ben chmark");</script> 376 <script>DisplayGraph("chromium-rel-mac7-gpu-intel/image_decoding_ben chmark");</script>
365 </tr> 377 </tr>
366 </table> 378 </table>
367 </center> 379 </center>
368 </body> 380 </body>
369 </html> 381 </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