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

Unified Diff: chrome/browser/resources/performance_monitor/chart.html

Issue 10820031: Modifications to performance monitor UI to address real webui. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Revised build config to mollify Android tryserver Created 8 years, 4 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
Index: chrome/browser/resources/performance_monitor/chart.html
diff --git a/chrome/browser/resources/performance_monitor/chart.html b/chrome/browser/resources/performance_monitor/chart.html
index e77dd4e39955062b37b72e237ecf13012f30f389..193e93a6231f4dfb15b8b23c43b11bb33bfa6edd 100644
--- a/chrome/browser/resources/performance_monitor/chart.html
+++ b/chrome/browser/resources/performance_monitor/chart.html
@@ -5,46 +5,47 @@ Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<!-- This page uses Flot version 0.7 in compressed form for efficiency.
-Readable Flot source is available at http://code.google.com/p/flot/
+Readable Flot source is available at http://code.google.com/p/flot/
Good caliber Flot API docs are at: http://people.iola.dk/olau/flot/API.txt
-as of 6/2012 -->
+as of 6/2012. -->
<html>
<head>
- <script type="text/javascript"
- src="../../../../third_party/flot/jquery.min.js"></script>
- <script type="text/javascript"
- src="../../../../third_party/flot/jquery.flot.min.js"></script>
<link rel="stylesheet" type="text/css" href="chart.css"/>
</head>
<body>
- <div id="chooseBlock">
- <div id="chooseMetrics">
+ <div id="choose-block">
+ <div id="choose-metrics">
<h2>Choose Metrics</h2>
</div>
- <div id="chooseEvents">
+ <div id="choose-events">
<h2>Choose Events</h2>
</div>
- <div id="chooseTimeRange">
+ <div class="spacer"></div>
+ <div id="choose-time-range">
<h2>Choose Time Range</h2>
</div>
</div>
<div id="charts"></div>
- <div id="templates" class="hidden">
- <div id="labelTemplate" class="event-label"></div>
- <div id="checkboxTemplate" class="checkbox">
+ <div id="templates" hidden>
+ <div id="label-template" class="event-label"></div>
+ <div id="checkbox-template" class="checkbox">
<label>
<input type="checkbox"></input>
<span>Change this label</span>
</label>
</div>
- <div id="radioTemplate" class="radio">
+ <div id="radio-template" class="radio">
<label>
- <input type="radio" name="TimeRange"/>
+ <input type="radio" name="time-range"/>
<span>Change this label</span>
</label>
</div>
</div>
- <script type="text/javascript" src="chart.js"></script>
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="jquery.js"></script>
+ <script src="flot.js"></script>
+ <script src="chart.js"></script>
</body>
</html>
« no previous file with comments | « chrome/browser/resources/performance_monitor/chart.css ('k') | chrome/browser/resources/performance_monitor/chart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698