Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 <link rel="stylesheet" href="shared/css/about_memory.css"> | 9 <link rel="stylesheet" href="shared/css/about_memory.css"> |
| 10 <style> | 10 <style> |
| 11 body { | 11 body { |
| 12 font-family: Arial, Helvetica, sans-serif; | 12 font-family: Arial, Helvetica, sans-serif; |
| 13 <if expr="pp_ifdef('android')"> | |
| 14 font-size: 1.7em; | |
| 15 min-width: 30em; | |
| 16 </if> | |
| 13 } | 17 } |
| 14 div#header select { | 18 div#header select { |
| 15 font-family: Arial, Helvetica, sans-serif; | 19 font-family: Arial, Helvetica, sans-serif; |
| 16 } | 20 } |
| 17 div.otherbrowsers { | 21 div.otherbrowsers { |
| 18 font-family: Arial, Helvetica, sans-serif; | 22 font-family: Arial, Helvetica, sans-serif; |
| 19 } | 23 } |
| 20 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1), | 24 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1), |
| 21 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4), | 25 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(4), |
| 22 table.list#browserComparison tr.firstRow th:nth-child(1) { | 26 table.list#browserComparison tr.firstRow th:nth-child(1) { |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 39 <p> | 43 <p> |
| 40 Measuring memory usage in a multi-process browser | 44 Measuring memory usage in a multi-process browser |
| 41 </p> | 45 </p> |
| 42 </div> | 46 </div> |
| 43 | 47 |
| 44 <div id='content'> | 48 <div id='content'> |
| 45 <h2> | 49 <h2> |
| 46 Summary | 50 Summary |
| 47 <div class='help'> | 51 <div class='help'> |
| 48 <div> | 52 <div> |
| 49 <p> | 53 <if expr="not pp_ifdef('android')"> |
| 54 <p> | |
| 50 Summary of memory used by currently active browsers. | 55 Summary of memory used by currently active browsers. |
|
Evan Stade
2012/07/24 21:37:04
I meant for you to pull both summaries out of here
Ted C
2012/07/24 23:54:47
Done.
| |
| 51 For browsers which use multiple processes, memory reflects | 56 For browsers which use multiple processes, memory reflects |
| 52 aggregate memory used across all browser processes.<p> | 57 aggregate memory used across all browser processes.<p> |
| 53 For Chromium, processes used to to display diagnostics | 58 For Chromium, processes used to to display diagnostics |
| 54 information (such as this "about:memory") are excluded. | 59 information (such as this "about:memory") are excluded. |
| 55 </p> | 60 </p> |
| 61 </if> | |
| 62 <if expr="pp_ifdef('android')"> | |
| 63 <p jsvalues=".innerHTML:summary_desc"></p> | |
|
Evan Stade
2012/07/24 21:37:04
usually we use i18n-values:
Ted C
2012/07/24 23:54:47
Done.
| |
| 64 </if> | |
| 56 </div> | 65 </div> |
| 57 </div> | 66 </div> |
| 58 </h2> | 67 </h2> |
| 59 | 68 |
| 60 <table class='list' id='browserComparison'> | 69 <table class='list' id='browserComparison'> |
| 61 <colgroup> | 70 <colgroup> |
| 62 <col class='name' /> | 71 <col class='name' /> |
| 63 <col class='number' /> | 72 <col class='number' /> |
| 64 <col class='number' /> | 73 <col class='number' /> |
| 65 </colgroup> | 74 </colgroup> |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 </td> | 226 </td> |
| 218 </tr> | 227 </tr> |
| 219 </table> | 228 </table> |
| 220 | 229 |
| 221 <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div> | 230 <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div> |
| 222 | 231 |
| 223 </div> | 232 </div> |
| 224 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 233 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 225 </body> | 234 </body> |
| 226 </html> | 235 </html> |
| OLD | NEW |