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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dashboard/platform-comparison.html ('k') | dashboard/targets.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/sizes.html
diff --git a/dashboard/sizes.html b/dashboard/sizes.html
deleted file mode 100644
index 119c00b52fbc5d2e91a81aefc9523a637e16ecd9..0000000000000000000000000000000000000000
--- a/dashboard/sizes.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<html>
- <head>
- <title>Chromium Sizes</title>
- <script src="ui/js/common.js"></script>
- <script language="javascript">
- function DisplayGraph(name, graph) {
- 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')
- var params = ParseParams();
- if (typeof graph == 'undefined') {
- if ('graph' in params) {
- graph = escape(params.graph);
- }
- } else if (graph != null) {
- document.write('&header=');
- document.write(graph);
- }
- if (graph != null) {
- document.write('&graph=');
- document.write(graph);
- }
- document.write('&lookout=1"></iframe></td>');
- }
- </script>
- </head>
- <body>
- <center>
- <h1>Chromium Sizes</h1>
- <h2 id="Sizes-Chromium-XP">Chromium XP</h2>
- <table>
- <tr>
- <script>DisplayGraph("xp-release/sizes", "chrome.dll");</script>
- <script>DisplayGraph("xp-release/sizes", "chrome.exe");</script>
- <script>DisplayGraph("xp-release/sizes", "mini_installer.exe");</script>
- <script>DisplayGraph("xp-release/sizes", "npchrome_frame.dll");</script>
- <script>DisplayGraph("xp-release/sizes", "setup.exe");</script>
- </tr>
- </table>
- <h2 id="Sizes-Chromium-Linux">Chromium Linux</h2>
- <table>
- <tr>
- <script>DisplayGraph("linux-release/sizes", "chrome");</script>
- <script>DisplayGraph("linux-release/sizes", "resources.pak");</script>
- <script>DisplayGraph("linux-release/sizes", "chrome-si");</script>
- </tr>
- </table>
- <h2 id="Sizes-Mac-Perf">Chromium Mac</h2>
- <table>
- <tr>
- <script>DisplayGraph("mac-release/sizes", "ChromiumFramework");</script>
- <script>DisplayGraph("mac-release/sizes", "Chromium");</script>
- <script>DisplayGraph("mac-release/sizes", "Chromium.app");</script>
- </tr>
- </table>
- </center>
- </body>
-</html>
-
« 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