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

Unified Diff: dashboard/overview-canary.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/overview.html ('k') | dashboard/overview-chrome.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/overview-canary.html
diff --git a/dashboard/overview-canary.html b/dashboard/overview-canary.html
deleted file mode 100644
index 0b1a14cb0c3eaf5ab0900b8db4cb88fd26c9211b..0000000000000000000000000000000000000000
--- a/dashboard/overview-canary.html
+++ /dev/null
@@ -1,93 +0,0 @@
-<html>
- <head>
- <title>Chrome Perf Overview</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>
- Currently showing
- <script language=javascript>
- var params = ParseParams();
- if ('graph' in params) {
- document.write(escape(params.graph))
- } else {
- document.write('page-load-time')
- }
- </script>
- </h1>
- <br>
- [ <a href="overview.html">page-load-time</a> |
- <a href="overview.html?graph=vm_peak_b">vm-peak-browser</a> |
- <a href="overview.html?graph=vm_peak_r">vm-peak-renderer</a> |
- <a href="overview.html?graph=ws_peak_b">ws-peak-browser</a> |
- <a href="overview.html?graph=ws_peak_r">ws-peak-renderer</a> |
- <a href="overview.html?graph=total_op_b">io-op-browser</a> |
- <a href="overview.html?graph=total_byte_b">io-byte-browser</a> ]
- <h1>Chromium XP - Webkit Latest</h1>
- <table>
- <tr>
- <script>DisplayGraph("xp-release-webkit-latest/moz");</script>
- <script>DisplayGraph("xp-release-webkit-latest/intl1");</script>
- <script>DisplayGraph("xp-release-webkit-latest/intl2");</script>
- </tr>
- <tr>
- <script>DisplayGraph("xp-release-webkit-latest/moz-http");</script>
- <script>DisplayGraph("xp-release-webkit-latest/bloat-http");</script>
- <script>DisplayGraph("xp-release-webkit-latest/dhtml");</script>
- </tr>
- <tr>
- <script>DisplayGraph("xp-release-webkit-latest/startup");</script>
- <script>DisplayGraph("xp-release-webkit-latest/new-tab-ui-cold");</script>
- <script>DisplayGraph("xp-release-webkit-latest/memory");</script>
- </tr>
- <tr>
- <script>DisplayGraph("xp-release-webkit-latest/sunspider");</script>
- <script>DisplayGraph("xp-release-webkit-latest/v8_benchmark");</script>
- <script>DisplayGraph("xp-release-webkit-latest/dom_perf");</script>
- </tr>
- <tr>
- <script>DisplayGraph("xp-release-webkit-latest/morejs");</script>
- </tr>
- </table>
- <h1>Chromium Linux - Webkit Latest</h1>
- <table>
- <tr>
- <script>DisplayGraph("linux-release-webkit-latest/moz");</script>
- <script>DisplayGraph("linux-release-webkit-latest/intl1");</script>
- <script>DisplayGraph("linux-release-webkit-latest/intl2");</script>
- </tr>
- <tr>
- <script>DisplayGraph("linux-release-webkit-latest/dhtml");</script>
- <script>DisplayGraph("linux-release-webkit-latest/startup");</script>
- <script>DisplayGraph("linux-release-webkit-latest/new-tab-ui-cold");</script>
- </tr>
- <tr>
- <script>DisplayGraph("linux-release-webkit-latest/morejs");</script>
- </tr>
- </table>
- </center>
- </body>
-</html>
-
« no previous file with comments | « dashboard/overview.html ('k') | dashboard/overview-chrome.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698