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

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

Issue 2386123003: Add heap allocator usage to task profiler. (Closed)
Patch Set: Address Eric's comment. Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/tracked_objects_unittest.cc ('k') | chrome/browser/resources/profiler/profiler.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/profiler/profiler.html
diff --git a/chrome/browser/resources/profiler/profiler.html b/chrome/browser/resources/profiler/profiler.html
index 84275334eba376e24826dbdac581c5dc7bf321ab..fb6c4977fdbfa520a36eede08a83389c780779bd 100644
--- a/chrome/browser/resources/profiler/profiler.html
+++ b/chrome/browser/resources/profiler/profiler.html
@@ -3,8 +3,10 @@
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
-<script src="profiler.js"></script>
+<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://resources/js/util.js"></script>
+<script src="chrome://profiler/strings.js"></script>
+<script src="chrome://profiler/profiler.js"></script>
<style>
@@ -17,15 +19,15 @@ body {
* has a blue heading. When you hover over rows, they turn yellow.
*/
table.results-table {
- border-collapse:collapse;
+ border-collapse: collapse;
}
table.results-table,
.results-table th,
.results-table td {
border: 1px solid #777;
- padding-right: 4px;
padding-left: 4px;
+ padding-right: 4px;
}
.results-table th {
@@ -33,7 +35,7 @@ table.results-table,
}
.results-table tbody tr:hover {
- background-color:#ffb;
+ background-color: rgb(255, 255, 187);
}
/*
@@ -48,7 +50,7 @@ table.results-table,
* This is row which displays aggregate totals for each column.
*/
.results-table .aggregator-row {
- background: #FFCC99;
+ background: rgb(255, 204, 153);
}
/*
@@ -66,8 +68,8 @@ table.results-table,
* class. Used to add a bit of spacing between groups.
*/
.group-container {
- margin-top: 2ex;
margin-bottom: 2ex;
+ margin-top: 2ex;
}
/*
@@ -85,16 +87,16 @@ table.results-table,
text-decoration: underline;
}
-.selected_snapshot {
- font-weight: bold;
+.selected-snapshot {
color: purple;
+ font-weight: bold;
}
#snapshot-selection-summary {
- margin-top: 1ex;
- font-weight: bold;
- font-style: italic;
color: green;
+ font-style: italic;
+ font-weight: bold;
+ margin-top: 1ex;
}
.errormsg {
@@ -113,8 +115,8 @@ table.results-table,
<table width=100%>
<tr>
<td>
- <b>Group by: </b> <span id=group-by-container></span>
- <b>Sort by: </b> <span id=sort-by-container></span>
+ <b>Group by: </b> <span id=group-by-container></span>
+ <b>Sort by: </b> <span id=sort-by-container></span>
</td>
<td align=right>
<span id=snapshots-link class=pseudo-link>[snapshots]</span>
« no previous file with comments | « base/tracked_objects_unittest.cc ('k') | chrome/browser/resources/profiler/profiler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698