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

Side by Side Diff: chrome/browser/resources/profiler.html

Issue 8832001: Add an OWNERS file for the about:profiler javascript code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/profiler.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="profiler.js"></script>
6 <script src="chrome://resources/js/util.js"></script>
7
8 <style>
9
10 body {
11 font-family: sans-serif;
12 font-size: 80%;
13 }
14
15 /*
16 * The following styles are for a TABLE that uses a thin collapsed border, and
17 * has a blue heading. When you hover over rows, they turn yellow.
18 */
19 table.results-table {
20 border-collapse:collapse;
21 }
22
23 table.results-table,
24 .results-table th,
25 .results-table td {
26 border: 1px solid #777;
27 padding-right: 4px;
28 padding-left: 4px;
29 }
30
31 .results-table th {
32 background: rgb(224,236,255);
33 }
34
35 .results-table tbody tr:hover {
36 background-color:#ffb;
37 }
38
39 /*
40 * Make the column headers change the mouse to a "hand" cursor, sine they are
41 * clickable.
42 */
43 .results-table th {
44 cursor: pointer;
45 }
46
47 /*
48 * This is row which displays aggregate totals for each column.
49 */
50 .results-table .aggregator-row {
51 background: #FFCC99;
52 }
53
54 /*
55 * This is the row at the end of tables which explains how many rows were shown,
56 * and how many were hidden.
57 */
58 .results-table .truncation-row {
59 background: #eee;
60 }
61
62 /*---------------------------------------------------------------------------*/
63
64 /*
65 * When grouping data, the table for each bucket is wrapped in a DIV with this
66 * class. Used to add a bit of spacing between groups.
67 */
68 .group-container {
69 margin-top: 2ex;
70 margin-bottom: 2ex;
71 }
72
73 /*
74 * The title for each group is enclosed in a DIV of the following class.
75 */
76 .group-title-container {
77 font-size: 140%;
78 margin-bottom: 1ex;
79 }
80
81 /* Styling to make a span look like a clickable link */
82 .pseudo-link {
83 color: blue;
84 cursor: pointer;
85 text-decoration: underline;
86 }
87
88 .selected_snapshot {
89 font-weight: bold;
90 color: purple;
91 }
92
93 #snapshot-selection-summary {
94 margin-top: 1ex;
95 font-weight: bold;
96 font-style: italic;
97 color: green;
98 }
99
100 </style>
101 </head>
102 <body>
103 <table width=100%>
104 <tr>
105 <td>
106 <b>Group by: </b> <span id=group-by-container></span>
107 <b>Sort by: </b> <span id=sort-by-container></span>
108 </td>
109 <td align=right>
110 <span id=snapshots-link class=pseudo-link>[snapshots]</span>
111 <span id=edit-columns-link class=pseudo-link>[columns]</span>
112 <input type='search' incremental id='filter-search' />
113 </td>
114 </tr>
115 <tr id=edit-columns-row style='display:none'>
116 <td colspan=2>
117 <div>
118 <b>Merge: </b><span id=column-merge-toggles-container></span>
119 <label><input type=checkbox id='merge-similar-threads-checkbox' chec ked/>
120 Merge similar threads.</label>
121 </div>
122 <div>
123 <b>Show: </b><span id=column-toggles-container></span>
124 </div>
125 </td>
126 </tr>
127 <tr id=snapshots-row style='display:none'>
128 <td colspan=2>
129 <button id=snapshot-button>Add snapshot</button>
130 <table><tbody id=snapshots-tbody></tbody></table>
131 <div id=snapshot-selection-summary></div>
132 </td>
133 </tr>
134 </table>
135
136 <hr/>
137
138 <div id='results-div'></div>
139
140 <!-- TODO(eroman): This should only be a short-lived solution,
141 which will eventually be superceded by snapshotting -->
142 <span id=reset-data-link class=pseudo-link>[Reset tracking data]</span>
143 </body>
144 </html>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/profiler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698