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

Unified 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, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/overview.html
diff --git a/dashboard/overview.html b/dashboard/overview.html
index 5adcee852909cf7bae45c0e6783d3f2ea13be81c..67a2a36154d784649b233e8cc3d8bb1ebe225aac 100644
--- a/dashboard/overview.html
+++ b/dashboard/overview.html
@@ -3,10 +3,16 @@
<title>Chrome Perf Overview</title>
<script src="ui/js/common.js"></script>
<script language="javascript">
- function DisplayGraph(name, graph) {
+ function DisplayGraph(name, graph, history) {
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')
+ if (typeof history == 'undefined') {
+ history = 50;
+ }
+ document.write('/report.html?');
+ if (history > 0) {
+ document.write('history=' + history);
+ }
var params = ParseParams();
if (typeof graph == 'undefined') {
if ('graph' in params) {
@@ -285,6 +291,12 @@
<tr>
<script>DisplayGraph("linux-release/kraken");</script>
<script>DisplayGraph("linux-release/page_cycler_2012Q2-netsim");</script>
+ <script>DisplayGraph("endure-linux-rel/control-testControlAttachDetachDOMTree", "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
+ </tr>
+ <tr>
+ <script>DisplayGraph("endure-linux-dbg/control-testControlAttachDetachDOMTree", "ControlAttachDetachDOMTree-l0-DMP", 0);</script>
+ <script>DisplayGraph("endure-linux-rel/gmail-testGmailComposeDiscard", "GmailComposeDiscard-TabMem-Private", 0);</script>
+ <script>DisplayGraph("endure-linux-dbg/gmail-testGmailComposeDiscard", "GmailComposeDiscard-l0-DMP", 0);</script>
</tr>
</table>
<h1 id="Chromium-Linux-LowMem">Linux LowMem</h1>
@@ -367,4 +379,3 @@
</center>
</body>
</html>
-
« 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