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

Unified Diff: chrome/browser/resources/profiler.html

Issue 8666005: Add snapshotting support to about:profiler. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: add comment about max Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/profiler.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/profiler.html
===================================================================
--- chrome/browser/resources/profiler.html (revision 111053)
+++ chrome/browser/resources/profiler.html (working copy)
@@ -85,6 +85,18 @@
text-decoration: underline;
}
+.selected_snapshot {
+ font-weight: bold;
+ color: purple;
+}
+
+#snapshot-selection-summary {
+ margin-top: 1ex;
+ font-weight: bold;
+ font-style: italic;
+ color: green;
+}
+
</style>
</head>
<body>
@@ -95,7 +107,8 @@
<b>Sort by: </b> <span id=sort-by-container></span>
</td>
<td align=right>
- <span id=edit-columns-link class=pseudo-link>[Edit columns]</span>
+ <span id=snapshots-link class=pseudo-link>[snapshots]</span>
+ <span id=edit-columns-link class=pseudo-link>[columns]</span>
<input type='search' incremental id='filter-search' />
</td>
</tr>
@@ -111,6 +124,13 @@
</div>
</td>
</tr>
+ <tr id=snapshots-row style='display:none'>
+ <td colspan=2>
+ <button id=snapshot-button>Add snapshot</button>
+ <table><tbody id=snapshots-tbody></tbody></table>
+ <div id=snapshot-selection-summary></div>
+ </td>
+ </tr>
</table>
<hr/>
« no previous file with comments | « no previous file | chrome/browser/resources/profiler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698