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

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

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 2
3 <!-- 3 <!--
4 about:memory template page 4 about:memory template page
5 --> 5 -->
6 <html id="t"> 6 <html id="t">
7 <head> 7 <head>
8 <title>About Memory</title> 8 <title>About Memory</title>
9 <if expr="pp_ifdef('android')"> 9 <if expr="pp_ifdef('android')">
10 <meta name="viewport" content="width=device-width"/> 10 <meta name="viewport" content="width=device-width">
11 </if> 11 </if>
12 <link rel="stylesheet" href="shared/css/about_memory.css"> 12 <link rel="stylesheet" href="shared/css/about_memory.css">
13 <link rel="stylesheet" href="about_memory_linux.css"> 13 <link rel="stylesheet" href="about_memory_linux.css">
14 <script src="chrome://memory-redirect/memory.js"></script> 14 <script src="chrome://memory-redirect/memory.js"></script>
15 <script src="chrome://memory-redirect/strings.js"></script> 15 <script src="chrome://memory-redirect/strings.js"></script>
16 </head> 16 </head>
17 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 17 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
18 <div id='header'> 18 <div id='header'>
19 <h1> 19 <h1>
20 About memory 20 About memory
21 </h1> 21 </h1>
22 <p> 22 <p>
23 Measuring memory usage in a multi-process browser 23 Measuring memory usage in a multi-process browser
24 </p> 24 </p>
25 </div> 25 </div>
26 26
27 <div id='content'> 27 <div id='content'>
28 <h2> 28 <h2>
29 Summary 29 Summary
30 <div class='help'> 30 <div class='help'>
31 <div> 31 <div>
32 <p class='summary-desc' i18n-values=".innerHTML:summary_desc"></p> 32 <p class='summary-desc' i18n-values=".innerHTML:summary_desc"></p>
33 </div> 33 </div>
34 </div> 34 </div>
35 </h2> 35 </h2>
36 36
37 <table class='list' id='browserComparison'> 37 <table class='list' id='browserComparison'>
38 <colgroup> 38 <colgroup>
39 <col class='name' /> 39 <col class='name'>
40 <col class='number' /> 40 <col class='number'>
41 <col class='number' /> 41 <col class='number'>
42 </colgroup> 42 </colgroup>
43 <tr class='firstRow doNotFilter'> 43 <tr class='firstRow doNotFilter'>
44 <th> 44 <th>
45 </th> 45 </th>
46 <th colspan='2'> 46 <th colspan='2'>
47 Memory 47 Memory
48 <div class='help'> 48 <div class='help'>
49 <div> 49 <div>
50 <p> 50 <p>
51 <strong>Memory</strong> 51 <strong>Memory</strong>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 <td class='number'> 91 <td class='number'>
92 <span class='th' jscontent="formatNumber(ws_shared)"></span><span cl ass='k'>k</span> 92 <span class='th' jscontent="formatNumber(ws_shared)"></span><span cl ass='k'>k</span>
93 </td> 93 </td>
94 </tr> 94 </tr>
95 </table> 95 </table>
96 <div class=otherbrowsers jsdisplay="show_other_browsers && browsers.length == 1"> 96 <div class=otherbrowsers jsdisplay="show_other_browsers && browsers.length == 1">
97 Note: If other browsers (e.g. IE, Firefox, Safari) are running, 97 Note: If other browsers (e.g. IE, Firefox, Safari) are running,
98 I'll show their memory details here. 98 I'll show their memory details here.
99 </div> 99 </div>
100 100
101 <br /><br /><br /> 101 <br><br><br >
102 102
103 <h2> 103 <h2>
104 Processes 104 Processes
105 <div class='help'> 105 <div class='help'>
106 <div> 106 <div>
107 <p> 107 <p>
108 Details of memory usage for each of Chromium's processes. 108 Details of memory usage for each of Chromium's processes.
109 </p> 109 </p>
110 </div> 110 </div>
111 </div> 111 </div>
112 </h2> 112 </h2>
113 113
114 <table class='list' id='memoryDetails'> 114 <table class='list' id='memoryDetails'>
115 <colgroup> 115 <colgroup>
116 <col class='pid' /> 116 <col class='pid'>
117 <col class='name' /> 117 <col class='name' >
118 <col class='number' /> 118 <col class='number'>
119 <col class='number' /> 119 <col class='number'>
120 </colgroup> 120 </colgroup>
121 <tr class='firstRow doNotFilter'> 121 <tr class='firstRow doNotFilter'>
122 <th> 122 <th>
123 </th> 123 </th>
124 <th> 124 <th>
125 </th> 125 </th>
126 <th colspan='2'> 126 <th colspan='2'>
127 Memory 127 Memory
128 </th> 128 </th>
129 </tr> 129 </tr>
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 </table> 196 </table>
197 197
198 <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div> 198 <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div>
199 199
200 </div> 200 </div>
201 <script src="chrome://resources/js/i18n_template.js"></script> 201 <script src="chrome://resources/js/i18n_template.js"></script>
202 <script src="chrome://resources/js/i18n_process.js"></script> 202 <script src="chrome://resources/js/i18n_process.js"></script>
203 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 203 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
204 </body> 204 </body>
205 </html> 205 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698