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

Side by Side Diff: dashboard/sizes.html

Issue 171303002: Remove perf dashboards for security reasons. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/perf
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « dashboard/platform-comparison.html ('k') | dashboard/targets.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>Chromium Sizes</title>
4 <script src="ui/js/common.js"></script>
5 <script language="javascript">
6 function DisplayGraph(name, graph) {
7 document.write('<td><iframe scrolling="no" height="250" width="400" src= "http://build.chromium.org/f/chromium/perf/');
8 document.write(name);
9 document.write('/report.html?history=50')
10 var params = ParseParams();
11 if (typeof graph == 'undefined') {
12 if ('graph' in params) {
13 graph = escape(params.graph);
14 }
15 } else if (graph != null) {
16 document.write('&header=');
17 document.write(graph);
18 }
19 if (graph != null) {
20 document.write('&graph=');
21 document.write(graph);
22 }
23 document.write('&lookout=1"></iframe></td>');
24 }
25 </script>
26 </head>
27 <body>
28 <center>
29 <h1>Chromium Sizes</h1>
30 <h2 id="Sizes-Chromium-XP">Chromium XP</h2>
31 <table>
32 <tr>
33 <script>DisplayGraph("xp-release/sizes", "chrome.dll");</script>
34 <script>DisplayGraph("xp-release/sizes", "chrome.exe");</script>
35 <script>DisplayGraph("xp-release/sizes", "mini_installer.exe");</scr ipt>
36 <script>DisplayGraph("xp-release/sizes", "npchrome_frame.dll");</scr ipt>
37 <script>DisplayGraph("xp-release/sizes", "setup.exe");</script>
38 </tr>
39 </table>
40 <h2 id="Sizes-Chromium-Linux">Chromium Linux</h2>
41 <table>
42 <tr>
43 <script>DisplayGraph("linux-release/sizes", "chrome");</script>
44 <script>DisplayGraph("linux-release/sizes", "resources.pak");</scrip t>
45 <script>DisplayGraph("linux-release/sizes", "chrome-si");</script>
46 </tr>
47 </table>
48 <h2 id="Sizes-Mac-Perf">Chromium Mac</h2>
49 <table>
50 <tr>
51 <script>DisplayGraph("mac-release/sizes", "ChromiumFramework");</scr ipt>
52 <script>DisplayGraph("mac-release/sizes", "Chromium");</script>
53 <script>DisplayGraph("mac-release/sizes", "Chromium.app");</script>
54 </tr>
55 </table>
56 </center>
57 </body>
58 </html>
59
OLDNEW
« no previous file with comments | « dashboard/platform-comparison.html ('k') | dashboard/targets.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698