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

Unified Diff: tools/buildbot/perf/dashboard/ui/generic_plotter.html

Issue 53061: Fix details.html to handle new data file names and formats. Remove old, unuse... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 | « tools/buildbot/perf/dashboard/ui/details.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot/perf/dashboard/ui/generic_plotter.html
===================================================================
--- tools/buildbot/perf/dashboard/ui/generic_plotter.html (revision 12364)
+++ tools/buildbot/perf/dashboard/ui/generic_plotter.html (working copy)
@@ -1,7 +1,7 @@
<html>
<!--
- Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+ Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
@@ -98,6 +98,7 @@
var did_position_details = false;
var units = 'thing-a-ma-bobs';
var graph_list = [];
+var first_trace = '';
var params = ParseParams();
if (!('history' in params)) {
@@ -158,7 +159,7 @@
setAttribute('src', Config.changeLinkPrefix + prev_cl + ':' + cl);
document.getElementById('view-pages').
- setAttribute('src', 'details.html?cl=' + cl);
+ setAttribute('src', 'details.html?cl=' + cl + '&trace=' + first_trace);
if (!did_position_details) {
position_details();
@@ -198,6 +199,8 @@
for (var traceName in allTraces)
traceNames.push(traceName);
+ first_trace = traceNames[0];
+
// Build and numerically sort a list of revision numbers.
var revisionNumbers = [];
for (var rev in graphData)
« no previous file with comments | « tools/buildbot/perf/dashboard/ui/details.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698