| 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 <meta charset="utf-8"> | 8 <meta charset="utf-8"> |
| 9 <title>About Memory</title> | 9 <title>About Memory</title> |
| 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 <td class="number"> | 129 <td class="number"> |
| 130 <span class="th" jscontent="formatNumber(comm_priv)"></span><span cl
ass="k">k</span> | 130 <span class="th" jscontent="formatNumber(comm_priv)"></span><span cl
ass="k">k</span> |
| 131 </td> | 131 </td> |
| 132 </tr> | 132 </tr> |
| 133 </table> | 133 </table> |
| 134 <div class="otherbrowsers" jsdisplay="browsers.length == 1"> | 134 <div class="otherbrowsers" jsdisplay="browsers.length == 1"> |
| 135 Note: This page will show memory use for all running browsers, | 135 Note: This page will show memory use for all running browsers, |
| 136 not just Chrome. | 136 not just Chrome. |
| 137 </div> | 137 </div> |
| 138 <div class="otherbrowsers" jsdisplay="browsers.length > 1"> | 138 <div class="otherbrowsers" jsdisplay="browsers.length > 1"> |
| 139 Note: Chrome includes memory used by plug-ins, other browsers may not. | 139 Note: Chrome includes memory used by plugins, other browsers may not. |
| 140 </div> | 140 </div> |
| 141 <div class="otherbrowsers"> | 141 <div class="otherbrowsers"> |
| 142 (Bug: We seriously overcount our own memory usage: <a href="http://crbug
.com/25454">Issue 25454</a>.) | 142 (Bug: We seriously overcount our own memory usage: <a href="http://crbug
.com/25454">Issue 25454</a>.) |
| 143 </div> | 143 </div> |
| 144 | 144 |
| 145 <br><br><br> | 145 <br><br><br> |
| 146 | 146 |
| 147 <h2> | 147 <h2> |
| 148 Processes | 148 Processes |
| 149 <div class="help"> | 149 <div class="help"> |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 </td> | 246 </td> |
| 247 </tr> | 247 </tr> |
| 248 </table> | 248 </table> |
| 249 <div class="otherbrowsers"> | 249 <div class="otherbrowsers"> |
| 250 (Note: Due to memory sharing between processes, summing memory usage doe
s not give total memory usage.) | 250 (Note: Due to memory sharing between processes, summing memory usage doe
s not give total memory usage.) |
| 251 </div> | 251 </div> |
| 252 </div> | 252 </div> |
| 253 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 253 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 254 </body> | 254 </body> |
| 255 </html> | 255 </html> |
| OLD | NEW |