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

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

Issue 2386123003: Add heap allocator usage to task profiler. (Closed)
Patch Set: Fix remaining clang compile errors. Created 4 years, 1 month 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <script src="profiler.js"></script> 6 <script src="chrome://resources/js/load_time_data.js"></script>
7 <script src="chrome://resources/js/util.js"></script> 7 <script src="chrome://resources/js/util.js"></script>
8 <script src="chrome://profiler/strings.js"></script>
9 <script src="chrome://profiler/profiler.js"></script>
8 10
9 <style> 11 <style>
10 12
11 body { 13 body {
12 font-size: 80%; 14 font-size: 80%;
13 } 15 }
14 16
15 /* 17 /*
16 * The following styles are for a TABLE that uses a thin collapsed border, and 18 * 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. 19 * has a blue heading. When you hover over rows, they turn yellow.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <body> 108 <body>
107 <b>Save:</b><button id=save-snapshots-button>Save</button> 109 <b>Save:</b><button id=save-snapshots-button>Save</button>
108 <b>Restore:</b> <input type=file id=snapshot-file-loader> 110 <b>Restore:</b> <input type=file id=snapshot-file-loader>
109 <span id=file-load-error hidden class=errormsg></span> 111 <span id=file-load-error hidden class=errormsg></span>
110 112
111 <hr> 113 <hr>
112 114
113 <table width=100%> 115 <table width=100%>
114 <tr> 116 <tr>
115 <td> 117 <td>
116 <b>Group by: </b> <span id=group-by-container></span> 118 <b>Group by: </b> <span id=group-by-container></span>
117 <b>Sort by: </b> <span id=sort-by-container></span> 119 <b>Sort by: </b> <span id=sort-by-container></span>
118 </td> 120 </td>
119 <td align=right> 121 <td align=right>
120 <span id=snapshots-link class=pseudo-link>[snapshots]</span> 122 <span id=snapshots-link class=pseudo-link>[snapshots]</span>
121 <span id=edit-columns-link class=pseudo-link>[columns]</span> 123 <span id=edit-columns-link class=pseudo-link>[columns]</span>
122 <input type='search' incremental id='filter-search'> 124 <input type='search' incremental id='filter-search'>
123 </td> 125 </td>
124 </tr> 126 </tr>
125 <tr id=edit-columns-row style='display:none'> 127 <tr id=edit-columns-row style='display:none'>
126 <td colspan=2> 128 <td colspan=2>
127 <div> 129 <div>
(...skipping 15 matching lines...) Expand all
143 </tr> 145 </tr>
144 </table> 146 </table>
145 147
146 <hr> 148 <hr>
147 149
148 <div id='results-div'></div> 150 <div id='results-div'></div>
149 151
150 <a style="display: none" id="download-anchor" download="profile.json"></a> 152 <a style="display: none" id="download-anchor" download="profile.json"></a>
151 </body> 153 </body>
152 </html> 154 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698